cat /etc/passwd | cut -d : -f7 | uniq -c | sort -n | tail -1uniq -c:在每列旁边显示该行重复出现的次数。sort -n:以数值来排序(从小到大)