wc + awk

cat json.sh
errmsg: "succ",
errno: 0,
ratio: 30,
request_id: "4090384680911258023"

wc json.sh     //总共有4行,8个单词,87个字节,文件名称为json.sh
4       8      87 json.sh

cat json.sh | awk '{printf $2}'    //统计该文件有多少个单词
8
  • 统计a.sh文件中hello出现的频率
Qufangdemac:test qfcomputer$ grep -o hello a.sh |wc -l
       8
// -o代表的是只输出匹配的选项。
  • 输出a.sh文件中hello出现的行数
Qufangdemac:test qfcomputer$ grep hello a.sh |wc -l
       4
  • 输出文档的前n行记录
Qufangdemac:test qfcomputer$ head -3 a.sh
this is a beautiful kit
hello world kitty hhhh
hello fuzi hello shenmu
  • 输出文档后n行记录
Qufangdemac:test qfcomputer$ tail -3 a.sh
hello fuzi hello shenmu
hello inner hello xian
hello good morning hello hello china
  • 查看端口占用情况
lsof -i:8080

你可能感兴趣的:(wc + awk)