4 lines
46 B
Bash
4 lines
46 B
Bash
|
|
for ((i=1; i<=$1; i++)); do
|
||
|
|
echo $i
|
||
|
|
done
|