0

これは私の最初の bash スクリプトです。基本的には、2 番目のモニターをシャットダウンするだけです。しかし、実行するとエラーが発生し続けるため、問題が発生しています。

#!/bin/bash


read -p "Do you want the 2nd monitor on or off? " ON_OFF

if [$ON_OFF == on]; then
xrandr --output DVI-I-3 --auto --right-of DVI-I-0
echo "done"
fi

if [$ON_OFF == off]; then
xrandr --output DVI-I-3 --off   
echo "done"
fi

私がそれを実行すると、私は得る

monitor_control.sh: 11: [[off: not found
monitor_control.sh: 16: [[off: not found

なぜそれが機能しないのか、誰かが私に説明できますか?

4

2 に答える 2