添加10個用戶user1到user10,但要求只有用戶不存在的狀況下才能添加

     #!/bin/bash
       for I in `seq 1 10`;do
       cut -d: -f1 /etc/passwd |grep"user$I" 2>>/tmp/etc.err || useradd user$I
       done
bash

相關文章
相關標籤/搜索