Shell脚本中'' () {} [] " " [[]] ``的不同用法

  • [[]]在脚本的使用中作用一是来匹配扩展正则表达式用法[[ =~ ]]例如:

    [root@localhost data]# touch f1.sh
    [root@localhost data]# file=f1.sh ;[[ $file =~ \.sh$ ]]
    [root@localhost data]# echo $?
    0
    [root@localhost data]# file=f1.shsh ;[[ $file =~ \.sh$ ]]
    [root@localhost data]# echo $?
    1

  • [[]]在脚本中的作用二是来匹配通配符用法:[[ == ]]或[[ != ]]例如:

    [root@localhost script]# file=f1.shsh
    [root@localhost script]# [[ "$file" == f ]]
    [root@localhost script]# echo $?
    0
    [root@localhost script]# [[ "$file" == fx
    ]]
    [root@localhost script]# echo $?
    1

  • echo $_表示上一个命令的最后一个参数。
  • Shell脚本中()的作用为将里面的命令在子shell里面执行,执行完毕之后退出

    [root@localhost script]# ( u=1;sleep 1000 )

查看进程图

与之相反的是{;}只是在当前shell中执行。

你可能感兴趣的:(Shell脚本中'' () {} [] " " [[]] ``的不同用法)