歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> SHELL編程

Shell應用:批量添加用戶

事例

腳本代碼:

[plain]

  1. #/bin/bash  
  2.   
  3. // batch_add_user.sh  
  4.   
  5. users=`awk -F: '{print $1}' users.conf`  
  6. home='/home/'  
  7.   
  8. for user in $users  
  9. do  
  10.     password=`grep $user users.conf | awk -F: '{print $2}'`  
  11.     useradd -d ${home}${user} $user  
  12.     grep $user users.conf | chpasswd  
  13.     chage -d 0 $user  
  14. done  
配置文件:

[plain]

  1. linuxidc:www.linuxidc.com  
Copyright © Linux教程網 All Rights Reserved