0
は、私は、次のbashスクリプトを実行するとのトラブルを抱えています:ALSObashスクリプト場合としながら、条件
#!/bin/bash
response=" "
while ["$response" != "q"]; do
echo -n "Please enter a response"; read response
done
!/bin/bash
response="x"
if ["$response" = "x"]
then
echo "the value is x"
fi
可能性のあるエラーとは何だろうか?
ありがとうございました!これは私の最後の手段だった、私は何が間違っていたかを調べようと約2時間を費やした。 – MahaRaja