shell 脚本 3

Posted liang-1

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell 脚本 3相关的知识,希望对你有一定的参考价值。

shell脚本中变量$0表示命令本身   可以表示软连接    

shell 变量

小括号只能影响小括号中的变量                  因为小括号开启子shell

大括号影响括号外面的变量                                 不开启子shell

[[email protected] bin 11:39:32]#x=1;echo "pid=$$";(echo "subpid=$$";echo "subx=$x";x=2;echo "subx2=$x");echo x=$x
pid=3526
subpid=3526
subx=1
subx2=2
x=1

 






以上是关于shell 脚本 3的主要内容,如果未能解决你的问题,请参考以下文章

Shell脚本超全详解

初识shell脚本

shell脚本显示0,1,1,2,3,5,8,13

Shell脚本应用(shell脚本基础与shell变量)

Shell脚本应用(shell脚本基础与shell变量)

第3章 Shell脚本入门