On Wed, Jul 9, 2008 at 6:22 PM, Joseph L. Casale
<JCasale@activenetwerx.com> wrote:
> What's the simplest way to increment the number 0000 up by one until some other 4 digit number while
> preserving leading zero's until the 1000's has a digit other than 0?
>
--
Stephen J Smoogen. -- BSD/GNU/Linux
How far that little candle throws his beams! So shines a good deed
in a naughty world. = Shakespeare. "The Merchant of Venice"
_______________________________________________
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos
07-10-2008, 12:37 AM
"Joseph L. Casale"
Shell Script Question
>Your homework done in a snap!
Lol, nah, not homework :P
I don't know what I was thinking, long day. OTH, I never seq could do this as well!
Thanks!
jlc
_______________________________________________
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos
07-10-2008, 12:51 AM
Stephen Harris
Shell Script Question
> What's the simplest way to increment the number 0000 up by one until some other 4 digit number while
> preserving leading zero's until the 1000's has a digit other than 0?
Lots of answers, depending on the shell. I like this version for ksh:
typeset -Z4 a=-1
while (( a++ < 1000 ))
do
print $a
done
Not enough use is made of typeset :-)
--
rgds
Stephen
_______________________________________________
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos
07-10-2008, 01:06 AM
"Les Bell"
Shell Script Question
"Joseph L. Casale" <JCasale@activenetwerx.com> wrote:
>>
What's the simplest way to increment the number 0000 up by one until some
other 4 digit number while
preserving leading zero's until the 1000's has a digit other than 0?
<<