我正在尝试编写我的第一个Bash脚本.我正在尝试创建一个脚本来启动我的主要流浪汉VM,以便我可以从任何目录启动它.这是我到目前为止:
#!/bin/bash
if [[ -n "$1" ]];
then
if [["$1" == "up"]];
then cd /home/user/DevEnv && vagrant up;
elif [["$1" == "halt"]];
then cd /home/user/DevEnv && vagrant halt;
fi
else
echo "Must pass up or halt to script";
fi
当我运行这个时,我得到以下输出
user@Debian ~ $dev
Must pass up or halt to script
user@Debian ~ $dev up
/home/user/bin/dev: line 5: [[up: command not found
/home/user/bin/dev: line 7: [[up: command not found
user@Debian ~ $dev halt
/home/user/bin/dev: line 5: [[halt: command not found
/home/user/bin/dev: line 7: [[halt: command not found
最后的其他似乎正在运作,但之后的命令似乎在流浪者之后被打破.我假设我做的事情很简单.我最终希望将参数作为变量,然后将变量传递给vagrant,但现在看起来更复杂了.
解决方法:
你需要空格来将[[和]]与它们之间的代码分开.例如:
elif [[ "$1" == "halt" ]];
then cd /home/user/DevEnv && vagrant halt;
fi
这也是case语句的一个很好的用途:
case "$1" in
up)
cd /home/user/DevEnv && vagrant up
;;
halt)
cd /home/user/DevEnv && vagrant halt
;;
*)
echo "Must pass up or halt to script"
;;
esac