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コマンド > diff ファイル比較

1
diff [OPTION]... FILES
~$ paste file1 file2
apple   apple
banana  BANANA
cat     cat
dog     dog
egg     egg
fun     fan
good    good
ice     ice
jam     jam
hat     
~$ 

ファイルを比較する

~$ diff file1 file2
2c2
< banana
---
> BANANA
6c6
< fun
---
> fan
10d9
< hat
~$ 

大文字小文字は同一視してファイル比較

~$ diff -i file1 file2
6c6
< fun
---
> fan
10d9
< hat
~$ 

比較結果をRCS形式で表示

~$ diff -n file1 file2
d2 1
a2 1
BANANA
d6 1
a6 1
fan
d10 1
~$ 

比較結果を左右に並べて表示(Width=22文字)

~$ diff -y -W22 file1 file2
apple           apple
banana    |     BANANA
cat             cat
dog             dog
egg             egg
fun       |     fan
good            good
ice             ice
jam             jam
hat       <
~$ 

比較結果を左右に並べて差分のみ表示

~$ diff -y -W22 --suppress-common-line file1 file2
banana    |     BANANA
fun       |     fan
hat       <
~$ 

比較結果をUNIFIED形式で表示

~$ diff -u file1 file2
--- file1 2015-04-10 19:16:47.000000000 +0900
+++ file2 2015-04-10 19:17:56.000000000 +0900
@@ -1,10 +1,9 @@
 apple
-banana
+BANANA
 cat
 dog
 egg
-fun
+fan
 good
 ice
 jam
-hat
~$ 

比較結果をCOPIED形式で表示

~$ diff -c file1 file2
*** file1 2015-04-10 19:16:47.000000000 +0900
--- file2 2015-04-10 19:17:56.000000000 +0900
***************
*** 1,10 ****
  apple
! banana
  cat
  dog
  egg
! fun
  good
  ice
  jam
- hat
--- 1,9 ----
  apple
! BANANA
  cat
  dog
  egg
! fan
  good
  ice
  jam
~$ 

UNIFIED形式で、差分行の前後のみ表示(前後1行表示)

~$ diff -U1 file1 file2
--- file1 2015-04-10 19:16:47.000000000 +0900
+++ file2 2015-04-10 19:17:56.000000000 +0900
@@ -1,3 +1,3 @@
 apple
-banana
+BANANA
 cat
@@ -5,3 +5,3 @@
 egg
-fun
+fan
 good
@@ -9,2 +9 @@
 jam
-hat
~$ 

COPIED形式で、差分行の前後のみ表示(前後1行表示)

~$ diff -C1 file1 file2
*** file1 2015-04-10 19:16:47.000000000 +0900
--- file2 2015-04-10 19:17:56.000000000 +0900
***************
*** 1,3 ****
  apple
! banana
  cat
--- 1,3 ----
  apple
! BANANA
  cat
***************
*** 5,7 ****
  egg
! fun
  good
--- 5,7 ----
  egg
! fan
  good
***************
*** 9,10 ****
  jam
- hat
--- 9 ----
~$