关于Unix Shell脚本

时间:2018-04-20 21:14:18

标签: shell unix

有人可以帮我解决这个问题:

如何编写带有参数的UNIX shell脚本。传递的参数应该是可执行文件的名称。验证参数,如果它无效,则输出相应的错误消息,并确保脚本退出时的总体状态为error。如果参数有效,则执行参数。如果参数的执行失败,则输出相应的错误消息,并确保脚本以整体错误状态退出。如果参数有效并且执行成功,我的脚本应退出并保持整体成功状态。

1 个答案:

答案 0 :(得分:1)

Okay, that's not a prob.

Split your task into 4 simple steps:

  1. How to pass command line arguments to bash script.

  2. How to check whether executable file exists.

  3. How to display message in bash.

  4. How to execute something from bash.

You'r welcome!