笔试练习(三): 21.编写shell程序,实现自动删除30个账号的功能. 账号名为std01至std30. [root@VM_0_5_centos test]# vi 21.sh [root@VM_0_5_centos test]# cat 21.sh #!/bin/bash #编写shell程序,实现自动删除30个账号的功能.账号名为std01至stud30 #要有root权限 for i in {9901..9930}; do xx=`echo $i | sed 's/99//g'` us…
笔试练习(一): 1.求2个数之和 [root@VM_0_5_centos test]# vi 1.sh [root@VM_0_5_centos test]# cat 1.sh #! /bin/sh first=0 second=0 read -p "Input the first number: " first read -p "Input the second number: " second result=$[$first+$second] echo &quo…
上篇我们学习了shell中条件选择语句的用法.接下来本篇就来学习循环语句.在shell中,循环是通过for, while, until命令来实现的.下面就分别来看看吧. for for循环有两种形式: for-in语句 基本格式如下: for var in list do commands done list代表要循环的值,在每次循环的时候,会把当前的值赋值给var(变量名而已,随意定), 这样在循环体中就可以直接通过$var获取当前值了. 先来一个例子吧: #!/bin/bash for st…