uniq的作用:显示重复或忽略重复的行。等同于sort -u
常用选项: -d:只显示重复的行。 -c:每一行出现的次数。 -u:只显示没有重复的行 -i:忽略大小写。
示例:
显示每一个用户登录的次数 [[email protected] ~]# last | cut -d‘ ‘ -f1| grep -v ‘^$‘ | sort | uniq -c 26 reboot 74 root 1 wtmp [[email protected] ~]#
时间: 2024-11-15 06:59:17