csv 파일에서 사용자를 만드는 스크립트를 작성합니다.
#!/bin/bash
group=`awk -F, '{print $2}' users.csv `
groups=`echo $group | sed -e 's/\s\+/,/g'`
while IFS=, read -r username group shell homedir status; do
groupadd $group
password=`date +%s | sha256sum | base64 | head -c 32`
useradd ${username} -m -d /home/${username} -s ${shell} -g ${group} -p ${password}
chmod -R 774 /home/${username} #3 )
chage --lastday 0 ${username}
echo -e "${username},${password}" >> cred.txt
usermod -aG ${groups} ${username}
if [[ ${status} == "N" ]]
then
userdel -r ${username}
else
echo "do nothing "
fi
done < users.csv
Reference
이 문제에 관하여(csv 파일에서 사용자를 만드는 스크립트를 작성합니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/learneriq/write-a-script-to-create-users-from-csv-file-4pl7텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)