所以我有這個在我的sh文件:打印由命令退出代碼不同的消息
#!/bin/bash
echo "Building Space Cubes X for Mac...."
make OS=APPLE -k
if [$? -eq 0]
then
echo "Build completed."
echo "You can find the build under (THIS_FOLDER)/bin/build."
else
echo "Build failed! Check above for error messages!"
fi
的問題是,Bash打印這個消息我甚至不明白:
./build-mac.sh: line 7: [0: command not found
任何幫助或建議表示讚賞!
我用Bash在Mac上運行。
哇!這工作完美! :\ –