RE: Incrementing Letter variables in bash

2002-01-31 Thread Wall, Kurt
This should give you an idea of how to proceed: --- cut here --- #!/bin/sh # This creates an array consisting of lower case letters, indexed # from 0 A=(a b c d e f g h i j k l m n o p q r s t u v w x y z) # Index through the array for (( i=0 ; $((i<=25)) ; $((i++)) )) do echo "A[$i] =

RE: Developer question

2002-01-30 Thread Wall, Kurt
Use autoconf. Kurt -Original Message- From: Rick Sivernell [mailto:[EMAIL PROTECTED]] Sent: Wed 1/30/2002 12:52 PM To: [EMAIL PROTECTED] Cc: Subject:Developer question List I am doing a programming project for a college class. My system and the development syste