面试题求解# JobHunting - 待字闺中A*o2014-01-10 08:011 楼使用bash脚本,统计一个文件中单词个数,并按照频率高低输出,类似word count问题但要求是,只能用一行脚本(管道连接那种),不能写python,perl这种哪位能给解答下?感谢了!
s*g2014-01-10 08:012 楼how about this one?$cat > 1.txtH E L LO, my N A M E is the the the F AAAAA T B O Y,bye bye B A B Y.$cat 1.txt | tr -s '[[:punct:][:space:]]' '\n' | sort | uniq -c | sort -n -r| awk '{print $2,$1}'【在 A*****o 的大作中提到】: 使用bash脚本,统计一个文件中单词个数,并按照频率高低输出,类似word count问题: 但要求是,只能用一行脚本(管道连接那种),不能写python,perl这种: 哪位能给解答下?感谢了!