???????????“???????”?????Щ???????????????????????????????????????????????

???????????Щ??????Quora?????Joshua Levy????????

?????? ???sort/uniq??????????????????????????????????a??b?????????????????????????????????????????Ч?????????????????κ???????????????????G?????????Sort??????????????????????? -T ????????????????????£??????????????Java?????????????????????????????д???

cat a b | sort | uniq > c   # c ??a??b????
cat a b | sort | uniq -d > c   # c ??a??b?????
cat a b b | sort | uniq -u > c   # c ??a??b????

?????? ????????????????????????????????????????Python??????3???????1/3???????????

awk ‘{ x += $3 } END { print x }’ myfile

?????? ????????????????????????????????????????????????????????????”ls -l”????????????????????”ls -lR”???????

find . -type f -ls

?????? ???xargs?????????????????????????????????????????????С????????????????????У??????xargs echo???????-I{} ???????á??????

find . -name *.py | xargs grep some_function
cat hosts | xargs -I{} ssh root@{} hostname

?????? ??????????????????????????web??????????????Щ???????Щ???????URL?е?acct_id???????????????????acct_id??????????????

cat access.log | egrep -o ‘acct_id=[0-9]+’ | cut -d= -f2 | sort | uniq -c | sort -rn