My problem is how can I iterate through the command line arguments if the number of allowed arguments is a variable:

example:

./sort.sh n <n integers to sort>
./sort.sh 5 3 4 2 1 5

I tried iterating it through a for-loop and putting it in a .txt file for the sort function but that presents a problem since the delimiter, say i, accepts only constants.

Thanks. :D

link|improve this question

75% accept rate
feedback

2 Answers

up vote 1 down vote accepted

You don't need the number of arguments. You can get it from within the script with $#.

And you don't need to loop through the arguments. Just pass them one per line to sort -n.

Something like: printf "%s\n" $@ | sort -n.

link|improve this answer
Thanks. I think I'll try this one. :D – Joshua Nov 29 '11 at 11:40
feedback
echo 2 4 3 1 5 | fmt -s -w 1 | sort -n

like this?

link|improve this answer
The number of integer arguments to sort is variable. It can be say, 10 integers. :D I need to parse it in some way. I tried $i and iterating through the i's but that didn't work. – Joshua Nov 29 '11 at 11:36
But isn't it redundant, can't you just skip it? Or you can, of course head -n $n the fmt output. Or you can for((i=0;i<$n;++i)) whatever you want. – Michael Krelin - hacker Nov 29 '11 at 11:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.