1. 程式人生 > >2018-11-12 shell指令碼

2018-11-12 shell指令碼

寫個shell指令碼,檢視系統中是否有自定義的使用者(普通使用者),若是有,一共有幾個 

#!/bin/bash
#2018-11-12
c=0
for a in `awk -F ":" '{print $3}' /etc/passwd`
   do
     if [ $a  -ge 1000 ]
     then
      let c++
    fi
done
echo $c