摘要:
awk使用简介: awk 'BEGIN{statements} pattern{commands} END{ end statements}'awk脚本包括三个部分:BEGIN+可以使用模式匹配的通用语句块+END语句块执行步骤:1.执行begin部分2.读取input stream,每读一行数据, 阅读全文
摘要:
一、sort命令使用1. 指定按数字排序:[root@TopInsight sort]#cat file1 paixu 4hebing 1weiyi 2chongfu 3[root@TopInsight sort]#sort -n file1 chongfu 3hebing 1paixu 4weiy 阅读全文