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的主要内容,如果未能解决你的问题,请参考以下文章