grep

作者: longgb246 | 来源:发表于2018-12-15 19:05 被阅读0次

查询信息

grep '1345' test.csv

查询信息,统计

grep '1345' test.csv | wc -l
grep '1345' test.csv | awk '{print NR, $0}'
grep '1345' test.csv | awk -F ',' '{if($1==9) print $0}' | awk '{print NR, $0}'

相关文章

网友评论

      本文标题:grep

      本文链接:https://www.haomeiwen.com/subject/qdoahqtx.html