1、shell脚本
输出 echo
文件头 #!/bin/bash
初始化标量 ndk=10 text=shell
特殊 text=“i love shell” 有空格需要用引号
text1=$(who)
echo $ndk
echo $text
命令行结束状态
0 成功
127 没有找到命令
1 未知错误
126 命令不可执行
if条件语句
只有if命令的退出状态码为0,才会执行then部分
语法结构
if --命令–
then
–命令–
fi
实例代码
#!/bin/bash
mydir=/usr/jason
#-d检查目录是否存在
if [ -d $mydir ]
then
echo "$mydir exist"
cd $mydir
ls
else
echo "mydir not exist"
fi
test数值比较
-gt
-eq 等于
-le
-ne 不等于
test 字符串比较
str1==str2
str1!=str2
str1<str2
-n str1 长度是否非0
-z str2 长度是否为0
文件比较
-d 检查是否存在,并且是一个目录
-e 检查file是否存在
-f 检查是否存在,并且是一个文件
-r 检查是否存在,并且可读
-w -x
file1 -nt file2 file1比file2新
file1 -ot file2 file1比file2旧
cas