我有 2 个文件,其中一个名为Group.csv
Containing
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