Simple Sand Samples |
説明のないとってもシンプルなサンプルプログラム集
COBOL | awk | C言語 | D言語 | GO言語 | Lua | Vim |
bash | Perl | Gauche | Clojure | CLISP | EmacsLisp | VimScript |
tcsh | Ruby | Groovy | Java | C# | VBScript | JavaScript |
Io言語 | Python | Erlang | Scala | VB.NET | Excel/VBA | PHP |
Tcl | Haskell | OCaml | PowerShell | Windows | Unix/Linux |
Linuxコマンド > wc 単語数行数カウント
|
|
~$ cat sample6.txt
aaaa
bbbb cccc dddd
eeee ffff
gggg hhhh iiii jjjj kkkk
llll
mmmm nnnn oooo pppp
6 sample6.txt
~$
16 sample6.txt
~$
80 sample6.txt
~$
6 16 80 sample6.txt
~$
24 sample6.txt
~$
6
~$ wc -w < sample6.txt
16
~$ wc -c < sample6.txt
80
~$ wc -L < sample6.txt
24
~$
aaaa
bbbb cccc dddd
eeee ffff
gggg hhhh iiii jjjj kkkk
llll
mmmm nnnn oooo pppp
ファイルの行数表示
~$ wc -l sample6.txt6 sample6.txt
~$
ファイルの単語数表示
~$ wc -w sample6.txt16 sample6.txt
~$
ファイルのバイト数表示
~$ wc -c sample6.txt80 sample6.txt
~$
一括表示
~$ wc sample6.txt6 16 80 sample6.txt
~$
最も長い一行の文字数を表示
~$ wc -L sample6.txt24 sample6.txt
~$
ファイル名を表示させたくない場合
~$ wc -l < sample6.txt6
~$ wc -w < sample6.txt
16
~$ wc -c < sample6.txt
80
~$ wc -L < sample6.txt
24
~$