shell-命令

echo

echo是Shell的一个内部指令,用于在屏幕上打印出指定的字符串。命令格式:
echo arg
您可以使用echo实现更复杂的输出格式控制。
如:

  1. 显示变量
    name="OK"
    echo "{name} It is a test"
  2. 显示换行
    echo "OK!\n"
    echo "It is a test"
  3. 显示不换行
    echo "OK!\c"
    echo "It is a test"
  4. 显示结果重定向至文件
    echo "It is a test" > myfile

printf

printf 命令用于格式化输出, 是echo命令的增强版。它是C语言printf()库函数的一个有限的变形,并且在语法上有些不同。
printf 不像 echo 那样会自动换行,必须显式添加换行符(\n)
语法

printf  format-string  [arguments...]

if else语句

  1. if ... fi 语句;
    if [ expression ]
    then
    Statement(s) to be executed if expression is true
    fi
    如果 expression 返回 true,then 后边的语句将会被执行;如果返回 false,不会执行任何语句。

最后必须以 fi 来结尾闭合 if,fi 就是 if 倒过来拼写,后面也会遇见。

注意:expression 和方括号([ ])之间必须有空格,否则会有语法错误。

  1. if ... else ... fi 语句;
    if [ expression ]
    then
    Statement(s) to be executed if expression is true
    else
    Statement(s) to be executed if expression is not true
    fi

  2. if ... elif ... else ... fi 语句
    if ... elif ... fi 语句可以对多个条件进行判断,语法为:

    if [ expression 1 ]
    then
    Statement(s) to be executed if expression 1 is true
    elif [ expression 2 ]
    then
    Statement(s) to be executed if expression 2 is true
    elif [ expression 3 ]
    then
    Statement(s) to be executed if expression 3 is true
    else
    Statement(s) to be executed if no expression is true
    fi

test命令

test 命令用于检查某个条件是否成立,它可以进行数值、字符和文件三个方面的测试

  1. 数值测试

    -eq 等于则为真
    -ne 不等于则为真
    -gt 大于则为真
    -ge 大于等于则为真
    -lt 小于则为真
    -le 小于等于则为真
    例子:

    num1=100
    num2=100
    if test [num2]
    then
    echo 'The two numbers are equal!'
    else
    echo 'The two numbers are not equal!'
    fi

  2. 字符串测试

    = 检测两个字符串是否相等,相等返回 true。
    != 检测两个字符串是否相等,不相等返回 true。
    -z 检测字符串长度是否为0,为0返回 true。
    -n 检测字符串长度是否为0,不为0返回 true。
    str 检测字符串是否为空,不为空返回 true。

例子:

num1=100
num2=100
if test num1=num2
then
    echo 'The two strings are equal!'
else
    echo 'The two strings are not equal!'
fi
  1. 文件测试

    -e 文件名 如果文件存在则为真
    -r 文件名 如果文件存在且可读则为真
    -w 文件名 如果文件存在且可写则为真
    -x 文件名 如果文件存在且可执行则为真
    -s 文件名 如果文件存在且至少有一个字符则为真
    -d 文件名 如果文件存在且为目录则为真
    -f 文件名 如果文件存在且为普通文件则为真
    -c 文件名 如果文件存在且为字符型特殊文件则为真
    -b 文件名 如果文件存在且为块特殊文件则为真

例子:

cd /bin
if test -e ./bash
then
    echo 'The file already exists!'
else
    echo 'The file does not exists!'
fi

注:另外,Shell还提供了与( ! )、或( -o )、非( -a )三个逻辑操作符用于将测试条件连接起来,其优先级为:“!”最高,“-a”次之,“-o”最低。例如:

cd /bin
if test -e ./notFile -o ./bash
then
    echo 'One file exists at least!'
else
    echo 'Both dose not exists!'
fi

case esac语句

case ... esac 与其他语言中的 switch ... case 语句类似,是一种多分枝选择结构

case 值 in
模式1)
    command1
    command2
    command3
    ;;
模式2)
    command1
    command2
    command3
    ;;
*)
    command1
    command2
    command3
    ;;
esac

case工作方式如上所示。取值后面必须为关键字 in,每一模式必须以右括号结束。取值可以为变量或常数。匹配发现取值符合某一模式后,其间所有命令开始执行直至 ;;。;; 与其他语言中的 break 类似,意思是跳到整个 case 语句的最后。

取值将检测匹配的每一个模式。一旦模式匹配,则执行完匹配模式相应命令后不再继续其他模式。如果无一匹配模式,使用星号 * 捕获该值,再执行后面的命令。
例子:
echo 'Input a number between 1 to 4'
echo 'Your number is:\c'
read aNum
case {1}"
case {2}"
echo "File name is {2}"
echo "Dir name is {0}`:usage: [-f file] | [-d directory]"
exit 1 # Command to come out of the program with status 1
;;
esac

for循环

for循环一般格式为:

for 变量 in 列表
do
    command1
    command2
    ...
    commandN
done

列表是一组值(数字、字符串等)组成的序列,每个值通过空格分隔。每循环一次,就将列表中的下一个值赋给变量。

in 列表是可选的,如果不用它,for 循环使用命令行的位置参数。

例如,顺序输出当前列表中的数字:
for loop in 1 2 3 4 5
do
echo "The value is: str
done
显示主目录下以 .bash 开头的文件:
#!/bin/bash
for FILE in FILE
done

while循环

格式为:

while command
do
   Statement(s) to be executed if command is true
done

例子:

  1. 如果COUNTER小于5,那么返回 true
    COUNTER=0
    while [ COUNTER+1'
    echo $COUNTER
    done

  2. while循环可用于读取键盘信息。下面的例子中,输入信息被设置为变量FILM,按结束循环

    echo 'type to terminate'
    echo -n 'enter your most liked film: '
    while read FILM
    do
    echo "Yeah! great film the $FILM"
    done

until循环

until 循环执行一系列命令直至条件为 true 时停止。until 循环与 while 循环在处理方式上刚好相反。一般while循环优于until循环,但在某些时候,也只是极少数情况下,until 循环更加有用。

until command
do
   Statement(s) to be executed until command is true
done

break和continue命令

  1. break
    例子:
    while :
    do
    echo -n "Input a number between 1 to 5: "
    read aNum
    case aNum!"
    ;;
    *) echo "You do not select a number between 1 to 5, game is over!"
    break
    ;;
    esac
    done
  2. continue命令

例子:
while :
do
echo -n "Input a number between 1 to 5: "
read aNum
case aNum!"
;;
*) echo "You do not select a number between 1 to 5!"
continue
echo "Game is over!"
;;
esac
done

你可能感兴趣的:(shell-命令)