1.here文档 here文档允许我们调用一个交互式程序:可以从脚本程序中输出大量的文本,从而不必echo每行 例子1: #!/bin/bash cat<<!DATA! This is a simple use of the here document.This data is the input given to the above cat command !DATA 其输出为: This is a simple use of the here document.This data is t…
1.$0-$9及$# $@的使用 demo_arg 内容 #!/bin/bash echo "程序名:$0" echo "命令传递参数个数:$#" echo "参数值分别是:$1 $2 $3 $4 $5 $6 $7 $8 $9" echo "所有参数:$@" exit 0 终端命令: $chmod u+x demo_arg $./demo_arg a b c d e f g h i 2.set用法 demo_set内容 #!/…
shell编程中条件表达式的使用 if 条件then Commandelse Commandfi 别忘了这个结尾 If语句忘了结尾fitest.sh: line 14: syntax error: unexpected end of fi if 的三种条件表达式 ifcommandthen if 函数then 命令执行成功,等于返回0 (比如grep ,找到匹配)执行失败,返回非0 (grep,没找到匹配) if [ expressi…
while类型的循环 while类型的循环是不定循环的一种,每一次循环都会验证给出的循环条件,判断是否要进行下一次循环.linux中while循环的写法和c语言中很想,但是条件给出的方式有些区别. 首先是<鸟哥私房菜>书中给出的写法 while [ "$yn" != 0 -a "$yn" != 1 ] do read -p "please type in your answer " yn done echo "the ans…
原文链接: Shell编程 打算有时间简单了解shell编程 1.shell结构 一个简单的例子: [root@localhost shell]# vi example #!/bin/sh #This is show what a example looks like. echo "my first shell example." echo # this inserts an empty line in output. echo "We are current in the…