测试Inbox

Bash基础第二节

2018-11-22  本文已影响2人  五娃儿

语句结构:

if 代表语句块开始,fi代表语句块结束。

if [condition] : then ...; fi

if [condition]: then ...;else ...; fi

if [conditon]: then ...;elif ...; fi

if [ -e test ];then echo exist;else echo not exist; fi 等价于 [ -e test ] &&echo exist||not exist

echo "1" && echo "2" || echo "3" && echo "4" || echo "5" ||echo "6"&& echo "7" && echo "8" || echo "9"

前面结果为真,则执行&& 后面的,否则执行|| 内容


语句结构:

for((c1;c2;c3));do...done

for循环第一种使用方式, 定义变量,根据数字判断 示例1:for ((i=0;i<10;i++));do echo $i;done

for循环第二种方式,遍历迭代序列中的内容

示例1: array=(1 2 3 4 5),for x in {array[*]}; do echo{x} ;done

示例2: for x in {array[*]}; do echo{x} ;done

语句结构:

i=0;while[ i -lt 3];do echo{i}; ((i++));done

当while条件为真,则执行do done里面的语句,否则不执行do done中的语句

用while一行行读取文件内容

文档1 内容为a b c d

while read x; do echo ${x};done<1

">" 输出重定向;将屏幕内容重定向到指定文件中

"<" 输入重定向,将文档1的内容输出给wile语句中 ,将1赋值给变量x


  1. return: 函数返回

  2. exit:脚本退出

  3. break:退出当前循环,默认为1 示例:for f in * ;do echo {f}; if [ -d{f} ]; then break;fi;done

  4. break 2 :退出两层循环

  5. continue: 跳过当前的循环,进入下一次循环 for f in * ;do echo {f};if [ -f{f} ];then echo ${f} is file ;else continue;fi;done

  6. continue 2:跳到上层上层循环的下一次循环中


  1. bash 是一个进程,bash下可以再重新启动一个shell,重新启动的shell为 子 shell,原shell会复制自身给 子shell,子 shell中的变量会随着 子 shell的消亡而消失

  2. () 子 shell 中云运行 b=5 (b=1;echo {b});echo{b} 小括号里面内容在子shell中运行

  3. {} 当前shell中执行 { b=11;echo {b};}; echo{b}

  4. 获取当前脚本的执行id echo $$

  5. & 后台执行

  6. $! 运行在后台的最后一个作业的PID(进程ID)

  7. 创建子shell并退出子shell : bash命令、 exit命令

  8. 启动暂停任务,sleep 50 按下键盘Ctrl +z,处于暂停状态,bg 3 继续执行任务,fg 3 将其展示(3是任务的编号)

  9. [图片上传失败...(image-797169-1542868835727)]

    image.png

  1. 打开 .bash_profile 设置环境变量后

  2. 配置执行sh脚本的路径 PATH=PATH:/home/test (引用原有的PATH,添加带配置的脚本文件路径到原有PATH上,记住有跟个":”)

  3. 退出保存bash_profile

  4. 执行source ~/.bash_profile 将更改的环境变量文件生效


  1. 输出重定向 > echo "hello " >1

  2. 输出追加重定向>> echo "hello +++ hello " >>1

  3. 文本搜索 grep "hello" test.txt

-i 忽略大小写 cat test.txt | grep -i "hello"

-o 只显示匹配到内容 cat test.txt | grep -io "hello"

“.” 匹配任意一个字符 echo absc |grep -o 'b.'

” 匹配所有内容 echo absc |grep -o 'b.'


  1. 快速查找之前的命令:由下往上查找,ctrl + r

  2. 历史操作过的命令查找:history

  3. 查看文件: cat

  4. 创建文档并编辑: vim 文件名 点击键盘i ,输入内容,点击esc :wq! 强制保存退出

  5. 向键盘读入命令:read 示例: read a;echo {a} -p 提示用户 read -p "enter:" a;echo{a}

  6. 查看进程(PID): ps

  7. 查看任务状态:jobs

  8. 将所有隐藏文件都展示出来:ls -al

  9. 显示文件:ls

  10. 更改文件权限: chmod

  11. 文本搜索命令:grep 搭配正则表达式使用

  12. 访问一个页面 :curl
    curl http://www.baidu.com/s?wd=mp3 | less 翻页查看

    curl -s http://www.baidu.com/s?wd=mp3 | grep -o "结果约[0-9]" [0-9]匹配数字

    curl -s http://www.baidu.com/s?wd=mp3 | grep -o "结果约[0-9,]* "

    curl -s http://www.baidu.com/s?wd=mp3 | grep -o "结果约[0-9,]" |grep -o "[0-9,]"

“ | grep -o "结果约[0-9,]" |grep -o "[0-9,]" ” 通过grep 不断把前一项内容向后过滤,直至获取到想要的内容

上一篇下一篇

猜你喜欢

热点阅读