adbdfcdf21a3ef1 500
adbdfcdf21a3ef1 100
adbdfcdf21a3ef1 400
.... 생략 ..
위 처럼 생긴 파일에서 2번째 필드만 자르기
cat sort_friends_count_over100_result.log | awk -F "\t" '$2 > 100' | wc -l
cat sort_friends_count_over100_result.log | awk -F "\t" '$2 > 492 && $2 < 494' | wc -l
위 처럼 생긴 파일 2번째 필드 역순으로 소팅하기
sort -nrk 2 friends_count_over100_result2.log