这是我的第一个 bash 脚本,基本上它只是关闭了我的第二个监视器。但是我一直遇到问题,因为当我运行它时它一直给我错误。
#!/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
谁能向我解释为什么它不起作用?