查看/web.log第25行第三列的内容。

sed –n ‘25p’ /web.log | cut –d “ ” –f3

head –n25 /web.log | tail –n1 | cut –d “ ” –f3

awk –F “ ” ‘NR==23{print $3}’ /web.log

标签: f3、cut、log、25p、n25、面试
  • 回复
隐藏