????????????????????У?????????λ?????????????????
????#sort testfile | uniq -c
????1 friend
????3 hello
????2 world
???????????????????У????????????????????????
????#sort testfile | uniq -dc
????3 hello
????2 world
??????????????????
????sort testfile | uniq -u
????friend
????cut
????cut???????????????????????????????????С?
????cut??
????[root@www~]# cut -d'??????' -f fields ???????????????
????[root@www~]# cut -c ???????            ????????????????
??????????????
????-d  ???????????????? -f ???????
????-f  ?????? -d ???????????????????????Σ??? -f ???????ε??????
????-c  ??????? (characters) ???λ?????????????
????[root@www~]# cut -d'??????' -f fields ???????????????
????[root@www~]# cut -c ???????            ????????????????
??????????????
????-d  ???????????????? -f ???????
????-f  ?????? -d ???????????????????????Σ??? -f ???????ε??????
????-c  ??????? (characters) ???λ?????????????
????PATH ????????
????[root@www~]# echo $PATH
????/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/X11R6/bin:/usr/games
????# 1 | 2       | 3   | 4       | 5            | 6            | 7
????[root@www~]# echo $PATH
????/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/X11R6/bin:/usr/games
????# 1 | 2       | 3   | 4       | 5            | 6            | 7
?????? PATH ????????????????????·????
????#echo $PATH | cut -d ':' -f 5
????/usr/local/bin
????#echo $PATH | cut -d ':' -f 5
????/usr/local/bin
?????? PATH ?????????????????????????·????
????#echo $PATH | cut -d ':' -f 3??5
????/sbin:/usr/local/bin
?????? PATH ??????????????????????????·????
????echo $PATH | cut -d ':' -f 3-
????/sbin:/usr/sbin:/usr/local/bin:/usr/X11R6/bin:/usr/games
?????? PATH ??????????????????????????·????
????#echo $PATH | cut -d ':' -f 1-3
????/bin:/usr/bin:/sbin:
?????? PATH ?????????????????????????????е????·????
????echo $PATH | cut -d ':' -f 1-3??5
????/bin:/usr/bin:/sbin:/usr/local/bin
???????????:????/etc/passwd???????shell
????#cat /etc/passwd | cut -d ':' -f 1??7
????root:/bin/bash
????daemon:/bin/sh
????bin:/bin/sh
????wc
???????????????ж????????????У??????????
????wc??
????[root@www~]# wc [-lwm]
??????????????
????-l  ?????г??У?
????-w  ?????г???????(??????)??
????-m  ???????????
??????????wc???/etc/passwd
????#wc /etc/passwd
????40   45 1719 /etc/passwd
????40????????45?????????1719???????
????wc??????????????????????????£?
????#wc -l /etc/passwd   #????????????????????????
????40 /etc/passwd       #???????40?????
????#wc -w /etc/passwd  #????????????
????45 /etc/passwd
????#wc -m /etc/passwd  #?????????????
????1719