介绍了shell脚本编程之for语句.if语句的使用方法. 上部: 面向过程: 顺序执行 选择执行: if, case 循环执行: for, while, until 一.for语句 格式: for 变量 in 列表;do 语句1; 语句2; ... done 例1.写一个脚本,添加10个用户,并让每个用户的密码同用户名] 复制代码代码如下: #!/bin/bash for I in {1..
参考博客: [1]Shell脚本的条件控制和循环语句 一.条件控制语句 1.if语句 1.1语法格式: if [ expression ] then Statement(s) to be executed if expression is true fi 注意:expression 和方括号([ ])之间必须有空格,否则会有语法错误. if 语句通过关系运算符判断表达式的真假来决定执行哪个分支.Shell 有三种 if ... else 语句: if ... fi 语句 if ... else
1.SHELL编程Case语句案例实战 1)Case选择条件语句的格式: case $INPUT in Pattern1) 语句1 ;; Pattern2) 语句2 ;; esac 2)Case语句企业案例实战一: in ) wget -c http://nginx.org/download/nginx-1.16.0.tar.gz ;; esac 2.SHELL编程Select语句案例实战 1)Select选择菜单语句的格式: select i in redhat centos ubuntu s
1.SHELL编程For语句案例实战 1)For语句固定的语法格式: For i in (表达式) do 动作1 done 2)For语句案例操作一: #!/bin/bash do echo “$NUM) www.jd.com” done 3)For语句案例操作二: #!/bin/bash ..}) do echo “$NUM) www.jd.com” done 4)For语句案例操作三: #!/bin/bash COMMAND=.{..} do echo -e "\033[32mThe $IP
查询员工信息 -S:静默登录 [oracle@localhost shells]$ cat shell1.sh #!/bin/bash #查询员工信息 sqlplus -S /nolog <<EOF conn scott/scott set feedback off set linesize 300 set pagesize 100 col empno for 99999 col ename for a12 col mgr for 9999 col hiredate for a20 col c