at_shiita.ishigaki
2022年3月25日 9時49分
ファイル内の改行数・単語数・文字数を表示するにはwcコマンドを使用します。
[armadillo ~]# cat > test.txt << EOF hoge hoge fuga piyo EOF 表示は左から、改行数・単語数・文字数となります。 [armadillo ~]# wc test.txt 3 4 20 test.txt
改行数のみを表示する場合は-lオプション、単語数のみを表示する場合は-wオプション、文字数のみを表示する場合は-mオプションを使用します。
[armadillo ~]# wc -l test.txt 3 test.txt [armadillo ~]# wc -w test.txt 4 test.txt [armadillo ~]# wc -m test.txt 20 test.txt
ファイル内の最大長の行のみの文字数を表示するには-Lオプションを使用します。
[armadillo ~]# wc -L test.txt 9 test.txt