最佳答案
我想写一个shell脚本,它检查某个文件archived_sensor_data.json
是否存在,如果存在,就删除它。在http://www.cyberciti.biz/tips/find-out-if-file-exists-with-conditional-expressions.html之后,我尝试了以下方法:
[-e archived_sensor_data.json] && rm archived_sensor_data.json
但是,这会抛出一个错误
[-e: command not found
当我尝试使用./test_controller
命令运行生成的test_controller
脚本时。代码出了什么问题?