bash shell自动创建用户-adduser

时间:2018-09-04 07:05:52

标签: linux bash shell ubuntu

我需要通过读取包含用户名,主目录和全名的文件的行来自动创建用户。

我是bash shell脚本的新手,这让我感到非常困惑。

我的adduser命令出了点问题。它给出了错误-adduser:仅允许使用一个或两个名称。

以下为完整脚本-

while read line;
do 
      fieldnumbers=$(echo $line | grep - o " " | wc - l)
      username=$(echo $line | cut -d' ' -f 1)
      home=$(echo $line | cut -d' ' -f 2)
      firstname=$(echo $line | cut -d' ' -f 3)

      if [[ "$fieldnumbers" -eq b4 ]]
      then
               middlename=""
      else
               middlename=$(echo $line | rev | cut -d' ' -f 2)

      lastname=$(echo $line | rev | cut -d' ' -f 1)
      password=$(echo pwgen 7 1) #create random password
      fullname="$firstname $middlename $lastname"

      echo "username is : $username"
      sudo adduser --gecos $fullname --disabled-password --home $home $username

      echo 'username:$password' | chpasswd
       echo "Password is for $username is: $password"
done < users.txt

我确定此脚本充满语法错误。请帮忙。我的大脑炸了。

1 个答案:

答案 0 :(得分:3)

除非您有意将值拆分成单独的单词,否则请始终引用变量。

sudo adduser --gecos "$fullname" --disabled-password --home "$home" "$username"

此外,如果要扩展变量,则必须在包含变量的字符串周围使用双引号,而不是单引号。

Difference between single and double quotes in Bash

所以这行:

echo 'username:$password' | chpasswd

应为:

echo "username:$password" | chpasswd