awk命令

查看某个文件的第一列和第四列内容code

awk '{print $1,$4}' hello.txt



查询第二列值为32的内容blog

awk '$2==32' hello.txt

相关文章
相关标签/搜索