- outline
How to repeating same command using bash script.
- script
## 20 times
for i in `seq 20`;
do
echo hello;
done
** Number after `seq`
How to repeating same command using bash script.
## 20 times
for i in `seq 20`;
do
echo hello;
done
** Number after `seq`