如何在linux sh中插入argv参数?
我在sh中编写了一个小安装程序,我不知道如何接argv参数。
I programming a small installation program in sh, and I do not know how then argv argument.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
像这样的东西吗?
#!/bin/sh
做某事 $1 $2
Something like this?
#!/bin/sh
Dosomething $1 $2
在 bash 中,命令行参数在 $1、$2、$3、... 变量中检索。对于脚本和脚本内的函数都是如此。
值得一读。
In bash, command line arguments are retrieved in $1, $2, $3, ... variables. This is true both for scripts and for functions inside scripts.
is worth a read.