-1
我是tryong來驗證一個簡單的文本輸入。 我需要驗證輸入是「是」或「否」。 我使用下面的代碼:試圖用bash驗證文本輸入
#!/bin/bash
IsSSL=$1
if [$IsSSL = "Yes"] || [$IsSSL = "No"];
then
echo "correct input"
else
echo "incorrect input"
fi
,但我不斷收到以下錯誤:
#sh test.sh df
test.sh: line 3: [df: command not found
test.sh: line 3: [df: command not found
incorrect input
任何想法,我究竟做錯了什麼?