Главная
Статьи
Форум
[*nix] Shell to add a list of users
got-anna
Please tell me how to write a shell to add a list of users.
I have a file in format:
user1 pass1
user2 pass2
...
usern passn
If it is impossible to set password here, password may be empty.
Thanks
Werdna
create them:
cat | cut -f1 -d\ | xargs useradd .....
passwd them
for i in ......
sergey_m
pw(8 в FreeBSD
Werdna
В Линуксе нет его, а вообще, там в натуре некислая привязка в платформе.
Нет, короче, стандартного средства.
Оставить комментарий
Имя или ник:
Комментарий:
got-anna
Please tell me how to write a shell to add a list of users.I have a file in format:
If it is impossible to set password here, password may be empty.
Thanks