Simple
Sand
Samples
プログラミング言語サンプル集
TOPへ
Hello World!(各言語のTOP)
perl Perlコマンド
pr ページ付け、段組
printf 書式付き表示
pushd,popd ディレクトリ変更復帰
pwd カレントディレクトリ表示
rename ファイル名を一括変更
rev テキスト左右反転
rmdir 空のディレクトリ削除
scp リモートファイルコピー
sed ストリームエディタ
seq 数列生成
sort ソート
split ファイル分割
sleep 指定時間遅延
sum チェックサム
svn バージョン管理
tac テキスト上下反転
tail テキスト末尾抽出
tar 書庫操作、圧縮、解凍
touch タイムスタンプ更新
tr 文字一括置換
unexpand スペースタブ変換
uniq ソート済テキストの重複削除
vim vimエディタ
wc 単語数行数カウント
xargs 引数作成
zip,unzip ZIP圧縮解凍

説明のないとってもシンプルなサンプルプログラム集
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 単語数行数カウント

1
wc [OPTION]... [FILE]...
~$ cat sample6.txt
aaaa
bbbb cccc dddd
eeee ffff
gggg hhhh iiii jjjj kkkk
llll
mmmm nnnn oooo pppp

ファイルの行数表示

~$ wc -l sample6.txt
6 sample6.txt
~$ 

ファイルの単語数表示

~$ wc -w sample6.txt
16 sample6.txt
~$ 

ファイルのバイト数表示

~$ wc -c sample6.txt
80 sample6.txt
~$ 

一括表示

~$ wc sample6.txt
 6 16 80 sample6.txt
~$ 

最も長い一行の文字数を表示

~$ wc -L sample6.txt
24 sample6.txt
~$ 

ファイル名を表示させたくない場合

~$ wc -l < sample6.txt
6
~$ wc -w < sample6.txt
16
~$ wc -c < sample6.txt
80
~$ wc -L < sample6.txt
24
~$