问答详情
源自:6-2 例:批量添加删除指定数量的用户

用户名添加错误

./addu.sh: line 6: [: too many arguments

[root@localhost shelltest]# ./addu.sh 

Please input your user name:  Finley

Please input your the number of users: 20

Please input your password for the users: user

./addu.sh: line 6: [: too many arguments

[root@localhost shelltest]# 


提问者:醉李白 2019-08-16 09:39

个回答

  • 慕侠3228424
    2019-08-25 09:49:02

    too many arguments的意思是:参数太多。line6表示:第六行。仔细看看你的脚本第六行,是不是有多余的符号把你的参数隔开了,使得参数看起来太多了。

  • 慕粉0121314447
    2019-08-20 18:16:07

    把脚本贴出来啊,要不然谁能帮你看?