摘要:
1.1 cat、zcat cat -n app.log | grep "error":查询日志中含有某个关键字error的信息,显示行号。 cat -n app.log | grep "error" --color:查询日志中含有某个关键字error的信息,显示行号,带颜色的。 cat -n tes 阅读全文
摘要:
在java 8中按照此步骤对map进行排序 对其进行排序 Collect and return a new LinkedHashMap (保持顺序) Map result = map.entrySet().stream() .sorted(Map.Entry.comparingByKey()) .c 阅读全文