SCRDEV/SCR.1.2/TP08/my_seq.sh

14 lines
125 B
Bash
Raw Normal View History

2024-12-04 12:01:04 +01:00
#!/bin/bash
if [[ $# -lt 1 ]]
then
echo "Usage: $0 <arg_numeric>"
exit
fi
for (( i=1; i<=$1 ;i++ ))
do
echo $i
done
exit