' P '

whatever I will forget

Entries from 2019-12-03 to 1 day

[: -ep: binary operator expected 発生

下記のように-eqとしていると if [ "$1" -eq "1" ]; then 下記エラー発生。 x.sh: line 9: [: -ep: binary operator expected 下記にようにしたらエラーでなくなった。 if [ "$1" = "1" ]; then # logic elif [ "$1" = "2" ]; then # logic else echo "Input…