标签: bash if-statement arguments string-length
假设我想检查第一个参数是否长2个字符。我试过了
if [ ${#$1} -e 2]
但它不起作用。
答案 0 :(得分:8)
-eq
]
总而言之:
if [ ${#1} -eq 2 ] then echo "It's two characters long" fi