shell传参内容超过10个如何获取

编写脚本中 如果我们命令行传参个数超过10个,无法获取第九个以后的值

测试:(可以看到,从第10个传参开始,无法获取正确传参内容)

[root@localhost ]# cat test.sh 
#!/bin/bash

test1=$1
test2=$2
test3=$3
test4=$4
test5=$5
test6=$6
test7=$7
test8=$8
test9=$9
test10=$10
test11=$11

echo $test1 $test2 $test3 $test4 $test5 $test6 $test7 $test8 $test9 $test10 $test11
[root@localhost ]# sh test.sh 1 2 3 4 5 6 7 8 9 a b
1 2 3 4 5 6 7 8 9 10 11
[root@localhost ]# sh test.sh 1 2 3 4 5 6 7 8 a b c
1 2 3 4 5 6 7 8 a 10 11

遇到这种情况,我们只需要在shell中用 {} 括起来,如下:

[root@localhost ]# cat test.sh 
#!/bin/bash

test1=$1
test2=$2
test3=$3
test4=$4
test5=$5
test6=$6
test7=$7
test8=$8
test9=$9
test10=${10}
test11=${11}

echo $test1 $test2 $test3 $test4 $test5 $test6 $test7 $test8 $test9 $test10 $test11
[root@localhost ]# sh test.sh 1 2 3 4 5 6 7 8 9 a b
1 2 3 4 5 6 7 8 9 a b
[root@localhost ]# sh test.sh 1 2 3 4 5 6 7 8 a b c
1 2 3 4 5 6 7 8 a b c

  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值