shell学习记录

Posted 思而不学

tags:

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

数学表达式:

$[ operation ]

 

循环的写法:

for var in list
do
    command
done


------------c语言风格------------
for (( variable assignment ; condition ; iteration process ))

------------while格式------------
while test command
do
    other commands
done

 

以上是关于shell学习记录的主要内容,如果未能解决你的问题,请参考以下文章