value=`expr 1 + 2`
echo "两数之和为: $value"
value_div=`expr 1 \* 2`
echo "两数之积为: $value_div"
variable_cal=$[ value + value_div ]
echo $variable_cal
if [ $value != $value_div ]; then
echo "value值不等于value_div"
else
echo "value值等于value_div"
fi
:<<EOF
if condition1
then
command1
elif condition
then
command2
else
fi
EOF
:<<EOF
我在这里注释了一段很长的话
这段话是一段多行的提示性文字
...
EOF
array=("h" "e" "l" "l" "o" "world")
echo "[1] 数组array的所有元素为:${array[@]}"
echo "[2] 数组array的所有元素为:${array[*]}"
echo "数组array的元素个数为:${#array}"
echo "数组array的第二元素个数为:${array[1]}"
echo "数组array的最后一个元素的长度为:${#array[5]}"
echo "当前文件夹下的文件名称:"
echo "=============================================="
for filename in `ls ./`
do
echo "${filename}"
done
echo "=============================================="
:<<EOF
for var in item1 item2 item3 ... itemN
do
command
done
EOF
echo "输出小于等于5的正整数:"
int=1
while((int<=5))
do
echo $int
let "int++"
done
echo "按下 <ctrl + d>退出"
echo -n "请输入任意一个字符:"
while read FILM
do
echo "你输入的是: ${FILM}"
done
:<<EOF
until condition
do
command
done
EOF
:<<EOF
while :
do
command
done
while true
do
command
done
for (( ; ; ))
EOF
echo "normal string"
echo "Say \"hello\"!"
echo -e "Mission complete!\n"
echo "First line \c"
echo "Second line"
echo "String..." > ./override_string.log
echo "String..." >> ./append_string.log
echo `date`
read -p "请输入一段字符:"
read -n 6
read -t 6
read -s password
echo "input password: ${password}"
:<<EOF
参数 说明
-eq 等于则为真
-ne 不等于则为真
-gt 大于则为真
-ge 大于等于则为真
-lt 小于则为真
-le 小于等于则为真
EOF
number1=100
number2=200
if test $[number1] -eq $[number2]
then
echo "两个数不相等"
else
echo "两个数相等"
fi
:<<EOF
参数 说明
= 等于则为真
!= 不相等则为真
-z 字符串 字符串的长度为零则为真
-n 字符串 字符串的长度不为零则为真
EOF
string1="abc"
string2="bcd"
if test $string1 = $string2
then
echo "两个字符串相等"
else
echo "两个字符串不相等"
fi
:<<EOF
参数 说明
-e 文件名 如果文件存在则为真
-r 文件名 如果文件存在且可读则为真
-w 文件名 如果文件存在且可写则为真
-x 文件名 如果文件存在且可执行则为真
-s 文件名 如果文件存在且至少有一个字符则为真
-d 文件名 如果文件存在且为目录则为真
-f 文件名 如果文件存在且为普通文件则为真
-c 文件名 如果文件存在且为字符型特殊文件则为真
-b 文件名 如果文件存在且为块特殊文件则为真
EOF
if test -e ./override_string.log
then
echo "override_string.log文件存在"
else
echo "override_string.log文件不存在"
fi
if test -e ./override_string.log -o -e ./append_string.log
then
echo '至少有一个文件存在!'
else
echo '两个文件都不存在'
fi
funcEchoString(){
echo "这是一个函数"
}
echo "==========函数执行开始==========="
funcEchoString
echo "==========函数执行结束==========="
funcWithReturn(){
func_value1=1
func_value2=2
return ($func_value1+$func_value2)
}
echo "==========函数执行开始==========="
funcWithReturn
echo "函数的执行结果是: $?"
echo "==========函数执行结束==========="
funcWithParam(){
echo "调用此函数的第一个参数是 ${1} "
echo "调用此函数的第二个参数是 ${2} "
echo "调用此函数的所有参数是 $* "
echo "调用此函数的所有参数个数是 $# "
}
echo "==========函数执行开始==========="
funcWithParam 1 2 3
echo "==========函数执行结束==========="
:<<EOF
参数处理 说明
$# 传递到脚本的参数个数
$* 以一个单字符串显示所有向脚本传递的参数
$$ 脚本运行的当前进程ID号
$! 后台运行的最后一个进程的ID号
$@ 与$*相同,但是使用时加引号,并在引号中返回每个参数。
$- 显示Shell使用的当前选项,与set命令功能相同。
$? 显示最后命令的退出状态。0表示没有错误,其他任何值表明有错误。
EOF
. ./other_shell.sh
source ./other_shell.sh
:<<EOF
命令 说明
command > file 将输出重定向到 file。
command < file 将输入重定向到 file。
command >> file 将输出以追加的方式重定向到 file。
n > file 将文件描述符为 n 的文件重定向到 file。
n >> file 将文件描述符为 n 的文件以追加的方式重定向到 file。
n >& m 将输出文件 m 和 n 合并。
n <& m 将输入文件 m 和 n 合并。
<< tag 将开始标记 tag 和结束标记 tag 之间的内容作为输入。
EOF
echo "string" > file 2>&1
echo "string" >> file 2>&1
sed 's/hello/hi/g' example-file.txt
sed -e 's/hello/hi/g' -e 's/world/century/g' example-file.txt
sed -i -e 's/hello/hi/g' -e 's/world/century/g' example-file.txt
awk -F '分隔符' '/正则表达式/{action动作}' 文件
awk -F ':' '/root/{print $1}' /etc/passwd