|
发表于 2005-3-18 13:37:43
|
显示全部楼层
此脚本在freebsd下测试通过, linux时将"ttyp"改为"pts"
- #!/bin/sh
- today=`date +%d`
- #统计当天登陆次数
- LOGINSUM=`last | awk '{print $2,$6}' | sed -n "/^ttyp.*${today}"'$/p' | wc -l`
- echo ${LOGINSUM}
- #统计用户登陆次数
- LOGINCOUNT=last | awk '{print $2,$6}' | sed -n "/^ttyp.*${today}"'$/p' | sort -r | uniq -c
- echo ${LOGINCOUNT}
复制代码 |
|