Linux下如何查看当前用户列表Linux认证考试
文章作者 100test 发表时间 2010:03:05 21:36:05
来源 100Test.Com百考试题网
Linux下,所有用户的信息都被存在一个叫做/etc/passwd 的文件里,所以要看用户列表可以自己写语句到这里去过滤查看,以下是我最近刚写的一个过滤语句。
cat /etc/passwd|grep -v nologin|grep -v halt|grep -v shutdown|awk -F":" { print $1"|"$3"|"$4 } |more