Linux统计文件行数wc

2017-03-21
#Unix #Shell
  $ wc -lcw file1 file2
  4 33 file1
  7 52 file2
  11 11 85 total

其中,- c 统计字节数;- l 统计行数;- w 统计字数。