Group.csv
Containingという名前の2つのファイルがあります
thisisgroupone
そして別の名前のUsers.csv
Testuser1,Testuser2,TestUser3
これまでの私のスクリプト:
# this part of the script will now add the created users into the created group!
while IFS=, read col1 col2 col3
do
usermod -g $READ GROUP.CSV$ $col1
usermod -g $READ GROUP.CSV$ $col2
usermod -g $READ GROUP.CSV$ $col3
done < Users.csv
echo "Users now moved to new group sepcifyed in Group.csv"
- このステートメントを完了するために、両方のファイルを一度に読み取る方法を見つけようとしています。
ありがとう=D