有人可以帮我解决这个问题:
如何编写带有参数的UNIX shell脚本。传递的参数应该是可执行文件的名称。验证参数,如果它无效,则输出相应的错误消息,并确保脚本退出时的总体状态为error。如果参数有效,则执行参数。如果参数的执行失败,则输出相应的错误消息,并确保脚本以整体错误状态退出。如果参数有效并且执行成功,我的脚本应退出并保持整体成功状态。
答案 0 :(得分:1)
Okay, that's not a prob.
Split your task into 4 simple steps:
How to pass command line arguments to bash script.
How to check whether executable file exists.
How to display message in bash.
How to execute something from bash.
You'r welcome!