【Linuxコマンド毎日お知らせ】wc-テキストコンテンツ統計器


2020-07-12上海
man page:wc - print newline, word, and byte counts for each file翻訳:出力ファイルの行、単語、バイトの合計
パラメータオプション
パラメータ
説明
-l
出力ファイルの行数
-w
出力ファイルの合計単語数
-c
出力ファイルの合計バイト数
-L
出力ファイルの最長行のバイト長
[root@107 ~]# cat test.txt
Alice is a gril.

Tom likes dogs.

The Great Wall belongs to china.
[root@107 ~]# wc test.txt
 5 13 68 test.txt
[root@107 ~]# wc -l  test.txt #       
5 test.txt
[root@107 ~]# wc -w  test.txt #        
13 test.txt
[root@107 ~]# wc -c test.txt #        
68 test.txt
[root@107 ~]# stat test.txt #          
  File: ‘test.txt’
  Size: 68        	Blocks: 8          IO Block: 4096   regular file
Device: 802h/2050d	Inode: 5038        Links: 1
Access: (0644/-rw-r--r--)  Uid: (    0/    root)   Gid: (    0/    root)
Access: 2020-07-11 04:21:27.023390452 -0400
Modify: 2020-07-11 04:21:27.023390452 -0400
Change: 2020-07-11 04:21:27.037390753 -0400
 Birth: -
[root@107 ~]# wc -L test.txt #               
32 test.txt

[root@107 ~]#