📌  相关文章
📜  获取附加参数 linux 脚本 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:04.802000             🧑  作者: Mango

代码示例1
$ cat myscript
#!/bin/bash
echo "First arg: $1"
echo "Second arg: $2"
$ ./myscript hello world
First arg: hello
Second arg: world