shell中如何比較兩字串是否相等

時間 2021-07-05 06:35:04

1樓:匿名使用者

#!/bin/bash

a="abc"

b="def"

if [ "$a" = "$b" ]

then

echo " a is same as b"

else

echo "a is different from b"fi

2樓:小米飛貓

#!/bin/bash

#filename is diffs.shif [ $# != 2 ];

then

echo "usage:./diffs.sh text1 text2"

elif [ $1 = $2 ];

then

echo " text1 is same as text2"

else

echo "text1 is different from text2"fi

3樓:

a="string1"

b="string2"

if [ $a = $b ]

then

echo "$a eq $b"

else

echo "$a ne $b"fi

4樓:

shell是什麼意思?是c#語言嗎?

如何判斷字串中存在另外字串java

肖颯盤靈韻 1 public intindexof int ch string str 用於查詢當前字串中字元或子串,返回字元或子串在當前字串中從左邊起首次出現的位置,若沒有出現則返回 1。2 public intindexof int ch string str,intfromindex 該方法與...

字串大小比較,字串大小比較的規則

如果單純比較長度,直接呼叫類似於strlen 之類的函式就可以,加以比較即可.如果比較字串的大小,則比較的是字元的ascii編碼的大小.你搜尋一下ascii碼表就可以得知每乙個ascii字元的大小.參考http www.wpyz.net noip 11 1.asp在比較時,設定乙個計數器,從零開始,...

怎樣向shell函式中傳遞有空格的字串引數

1,2,3,代表第1,第2,第3.個引數 代表引數個數 寫一個指令碼 cat parameter 1.sh bin bash echo 1,2,3 echo 增加執行許可權 chmod x parameter 1.sh執行它,帶3個引數 parameter 1.sh q1 q2 q3q1,q2,q3...