I am trying to pass the argument as max limit for the for loop like this:
#!/bin/bash
for i in {1..$1}
do
echo $i
done
This however returns {1..2} when called with argument 2, instead of executing the script and giving me
1
2
|
I am trying to pass the argument as max limit for the for loop like this:
This however returns
| |||
|
feedback
|
|
Variable substitutions are not done inside of curly braces. You can use fixed numbers but not variables.
Try one of these alternatives:
| |||||||
feedback
|
|
This will cycle through all true arguments (a.k.a. "testo mesto" is one argument)
OR
| |||
|
feedback
|
|
As well as John Kugelman's solution, you can use
Or, if $1 is 10, then:
You could also use some variants on:
Or:
That uses process substitution. | |||
|
feedback
|
|
...or in the unlikely event that you really just want sequential numbers:
:-) | |||
|
feedback
|