cat file3.d | uniq 取出文件中不重复的内容
cat file3.d | uniq |grep txt 取出文件中不重复且包含 txt 的内容
cat file3.d | uniq |grep txt | sort 取出文件中不重复且包含 txt 并排序的内容
cat file3.d | uniq |grep txt 取出文件中不重复且包含 txt 的内容
cat file3.d | uniq |grep txt | sort 取出文件中不重复且包含 txt 并排序的内容
2015-08-16