linux 系统shell脚本for循环练习

linux 系统shell脚本for循环练习_第1张图片
linux 系统shell脚本for循环练习_第2张图片
练习脚本1:

 root@server0 ~]# vim  for.sh   #创建脚本
  #! /bin/bash      
  for a in 1 2 3 4 5 6          # a值1 2 3 4 5 6依次for循环
  do                            #格式  
  touch  /root/pan $a.txt       #创建 /root/pan 1-6.txt 文件 
  echo $a.txt                   #呈现   1-6.txt 文件 
  done
[root@server0 ~]#chmod +x for.sh   #加执行权限
[root@server0 ~]# ./for.sh         #运行脚本
1.txt               
2.txt
3.txt
4.txt
5.txt
6.txt

  • 练习脚本二:循环创建用户
#! /bin/bash
for name in {1..10}
do 
useradd pan$name  2>>/root/pan.txt             #错误信息导入pan.txt
 echo 123  | passwd --stdin pan$name
done


你可能感兴趣的:(Linux系统shell脚本)