私のbashスクリプトでは、IFステートメントの入力としてequals(=)演算子を使用しようとしていますが、これは実行できますか?
echo "Plese enter an operator as shown in the brackets (-)subtract, (*)Multiply, (+)Add, (/)divide, quit(=)?"
read operator
..........
if [[ $operator == '=' ]]; then
'do something'
fi