编纂shell - for循环
编写shell - for循环
touch sh1
vim sh1
#!/bin/bash
for((i=1;i<=10;i++));do
echo $i;
done;
chmod +x sh1
./sh1