【发布时间】:2020-07-21 03:40:25
【问题描述】:
我正在尝试从 bash 中的 csv 文件创建不同的用户。 到目前为止,这是我的代码:
#create arrays usernames and password
groups=(`cut -d: -f 1 "$filein"`)
usernames=(`cut -d: -f 3 "$filein" | tr [A-Z] [a-z] |awk '{print substr($1.$2}'`)
password=(`cut -d: -f 4 "$filein"`)
#creates the user accounts, adds them to groups, and sets passwords
#then once account is created
#checks if the group exists, if not then creates it
for group in ${groups[*]}
do
grep -q "^$group" /etc/group ; let x=$?
if [ $x -eq 1 ]
then
groupadd "$group"
fi
done
#creates the user accounts, adds them to groups, and sets passwords
#then once account is created
x=0
created=0
for user in ${usernames[*]}
do
useradd -n -c ${usernames[$x]} -g "${groups[$x]}" $user 2> /dev/null
chpasswd "$user" > /dev/null
if [ $? -eq 0 ]
then
let created=$created+1
fi
由于某种原因,当我运行文件时,这是我得到的错误,甚至让我添加任何用户 groupadd: 'Q123456,Bob,Bob,QwertY1' 不是有效的组名 groupadd: 'Q236578,Jane,Jane,AzertY2' 不是有效的组名 任何帮助将不胜感激。谢谢你
【问题讨论】:
-
这可能会有所帮助:How to debug a bash script?
标签: linux bash csv passwords usergroups