常用技巧
1、按重复次数排序
cat check_info.log| sort | uniq -c | sort -nr
2、linux下txt文件乱码
iconv -f gbk -tutf8 pos.txt > pos.txt.utf8
3、linux下文件中文乱码
基本格式: convmv -f 原编码 -t 新编码 --notest(可选) 文件名 或 convmv -f 原编码 -t 新编码 --notest(可选) -r 目录名
赞 (0)
1、按重复次数排序
cat check_info.log| sort | uniq -c | sort -nr
2、linux下txt文件乱码
iconv -f gbk -tutf8 pos.txt > pos.txt.utf8
3、linux下文件中文乱码
基本格式: convmv -f 原编码 -t 新编码 --notest(可选) 文件名 或 convmv -f 原编码 -t 新编码 --notest(可选) -r 目录名