linux shell program summary

Posted

tags:

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

from:Sep 23 2016


 

mathematical operation:

技术分享

floating number,bc calculator:

技术分享

we can also use bc in shell scripts:

技术分享


 

if - then - else

number comparison:

              n1 -eq n2

              n1 -ge n2

              n1 -gt n2

              n1 -le n2

              n1 -lt n2

              n1 -ne n2

技术分享

if - then - elif, notice that the second elif won‘t be executed, though it‘s also right.

技术分享


 

strings comarison:

                          str1 = str2

                          str1 != str2

                          str1 < str2

                          str1 /> str2

                          -n str1

                          -z str1

技术分享


 

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

[Linux] Shell Scripts

初学Linux之简单的Shell

Linux程序编写shell script的格式

linux通过shell离线安装MySQL

Shell Programming(three)

linux Shell 中grep+wc取值在shell中的结果与手动执行结果不一致的坑