Industry guru Dave Taylor offers free tech support on a wide variety of technical and business topics, including HTML, Apple iPhone, online advertising, Cascading Style Sheets, Web design, management, Unix, Linux, search engine optimization, online dating, Mac OS X, shell script programming and Microsoft Windows.

How do I step through numeric values in a shell script?

Please, gimme a advice how to correctly use loop "for i in `seq 1 10`" for Mac OS X, echo $SHELL->/bin/bash, because when I write simple strip: for i in `seq 1 10`;do echo $i;done it outputs -bash: seq: command not found.


Dave's Answer:

That's because Mac OS X doesn't actually have a command called "seq", but fortunately the basic task you want to accomplish is easily done as a shell script, and if you're so inclined, drop it in $HOME/bin, add that to your PATH and name it "seq" and you're good to go:

#!/bin/sh

# count - step through numeric values until you get to the max value

if [ "$#" -lt 2 ] ; then
  echo "Usage: count {increment}"
  exit 1
fi

counter="$1"
max="$2"

if [ "$#" -eq 2 ] ; then
  step=1
else
  step=$3
fi

while [ $counter -le $max ] ; do
  echo $counter
  counter=$( expr $counter + $step )
done

exit 0

This is actually kind of fancy as a shell replacement script because not only does it let you step from any value to any secondary value, but you can also specify the increment, so if you need to count only even numbers for some obscure reason, you could do that.

If you really want to experiment with scripting, try writing it so that if the second value is less than the former value that it automatically decrements instead of incrementing. That is, count 1 5 would produce 1 2 3 4 5, but count 10 5 would correctly produce 10 9 8 7 6 5 rather than just produce the first value and then find that the test to see if the current value is greater than the max value succeeds.

If you really want to explore, also tweak it so you can do Fibonacci sequences and other complicated increments (a Fibonacci sequence is where each value is the sum of the previous two, e.g., 1 1 2 3 5 8 13 21 34 55...). Of course, if you do explore in that direction it might well indicate that you have too much time on your hands, in which case you would probably enjoy my book Wicked Cool Shell Scripts too. :-)



Help others find this article at Del.icio.us, Digg, Netscape, Reddit, and Stumble Upon    

Subscribe!

Never miss another useful Q&A article again! Subscribe to AskDaveTaylor with Google Reader.

Comments

Another solution (on some OS, like Solaris) is to use a special feature of the shell :

echo {1..4}

1 2 3 4

echo {8..4}

8 7 6 5 4

Posted by: Prune at January 21, 2008 7:45 AM

I just forgot, on some Os you also have the command "jot"

Cheers.

Posted by: Prune at January 21, 2008 7:52 AM

I have something to say, now that you mention it, but ...
Starbucks coffee cup I do have a lot to say, and questions of my own for that matter, but first I'd like to say thank you for all your efforts on this Web site by buying you a cup of coffee!

I do have a comment, now that you mention it!











Remember personal info?


Please note that I will never send you any unsolicited email. Ever.

While I'm at it, please note that by submitting a question or comment you're agreeing to my terms of service, which are: you relinquish any subsequent rights of ownership to your material by submitting it on this site.








Ask Dave Taylor: The iPhone App: Advertisement



Follow me on Twitter @DaveTaylor

Search
Find just the answers you seek from among our 2300+ free tech support articles by using our Lijit search engine.


Help!





Subscribe to
Ask Dave Taylor!

Add to Google Reader
Add to My Yahoo!
Subscribe in NewsGator Online

RDF   XML

Free Updates!
Sign up and get free weekly updates and special offers on books, seminars, workshops and more.


Recent Entries
Book Links
© 2002 - 2010 by Dave Taylor. All Rights Reserved.

Note: This web site is for the purpose of disseminating information for educational purposes, free of charge, for the benefit of all visitors. We take great care to provide quality information. However, we do not guarantee, and accept no legal liability whatsoever arising from or connected to, the accuracy, reliability, currency or completeness of any material contained on this web site or on any linked site.

[whiteboard marker tray]
"Ask Dave Taylor®" is a registered trademark of Intuitive Systems, LLC.