Liệt kê các user trong máy - shell linux
[code]
#!/bin/bash
#filename=$1
i=0
fname="/etc/passwd"
while read line
do
let "i++"
echo "$i. ` echo "$line" | cut -d: -f1`"
#echo "$i $line"
#array[$i]=$line
done <$fname echo "(*) Tong cong co $i user." exit 0 [/code]
Nhận xét
Đăng nhận xét