Example
Simple Example
1 |
|
测试命令
1 | bash script.sh 1 2 3 |
输出结果是
1 | 1 |
分割参数
1 |
|
测试命令
1 | bash ./test.sh 1.2.3.4.5 |
输出结果
1 | args:1.2.3.4.5 |
1 | #!/bin/bash |
测试命令
1 | bash script.sh 1 2 3 |
输出结果是
1 | 1 |
1 | #!/bin/bash |
测试命令
1 | bash ./test.sh 1.2.3.4.5 |
输出结果
1 | args:1.2.3.4.5 |