Simple
Sand
Samples
プログラミング言語サンプル集
TOPへ
Hello World!(各言語のTOP)
awk AWKコマンド
banner 花文字(バナー)
basename パスからファイル名抽出
cal カレンダー表示
cat ファイルの連結、内容表示
cd ディレクトリ変更
cksum CRCチェックサム
cp ファイルコピー
cut テキスト列抽出
date 日付と時間
dd バイナリ生成
diff ファイル比較
dirname パスからディレクトリ名取得
expand タブスペース変換
ed エディタ
find ファイル検索
gdb GNUデバッガ
git バージョン管理
global ソースコードTAGGING
grep 文字列検索
hd バイナリ16進ダンプ
head テキスト先頭抽出
hexdump バイナリダンプ
join フィールド一致行結合
ld リンクコマンド
ln シンボリックリンク
ls ファイルリスト
lv 文字コード変換
md5sum MD5メッセージダイジェスト
mkdir ディレクトリ作成
mv ファイル名(ディレクトリ)変更
netdiscover コンピュータ検索
nl 番号付け
od バイナリダンプ
paste ファイルを横に並べて表示
patch パッチを当てる
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コマンド > grep 文字列検索

1
2
grep [OPTION] PATTERN [FILE...]
grep [OPTION] [-e PATTERN | -f FILE] [FILE...]
~$ mkdir tmp;cd tmp
~/tmp$ seq 100 > file1
~/tmp$ seq 200 > file2
~/tmp$ seq 300 > file3

ファイル中の文字列を検索

~/tmp$ grep 33 file1
33

複数ファイル中の文字列を検索

~/tmp$ grep 33 file1 file2 file3
file1:33
file2:33
file2:133
file3:33
file3:133
file3:233

(ワイルドカード指定)複数ファイル中の文字列を検索

~/tmp$ grep 33 file*
file1:33
file2:33
file2:133
file3:33
file3:133
file3:233

マッチする行数をカウント

~/tmp$ grep -c 33 file*
file1:1
file2:2
file3:3

正規表現を使い文字列を検索

~/tmp$ grep '^33' file*
file1:33
file2:33
file3:33

マッチしない(検索文字列が存在しない)行を抽出

~/tmp$ grep -v '[1-8]' file*
file1:9
file1:90
file1:99
file2:9
file2:90
file2:99
file3:9
file3:90
file3:99

検索文字列の周辺を抽出(後方2行)

~/tmp$ grep -A2 33 file1
33
34
35

検索文字列の周辺を抽出(前方1行)

~/tmp$ grep -B1 33 file2
32
33
--
132
133

検索文字列の周辺を抽出(前後1行)

~/tmp$ grep -C1 33 file3
32
33
34
--
132
133
134
--
232
233
234

検索文字列が存在するファイル名を表示

~/tmp$ grep -l 222 file*
file3

検索文字列が存在しないファイル名を表示

~/tmp$ grep -L 222 file*
file1
file2