Simple
Sand
Samples
プログラミング言語サンプル集
TOPへ
Hello World!(各言語のTOP)
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コマンド > nl 番号付け

1
nl [OPTION]... [FILE]...
~$ cat testfile
apple
banana
candy
dog

egg
fox
gate
hat
~$ 

全行に番号付け

~$ nl -ba testfile
     1  apple
     2  banana
     3  candy
     4  dog
     5  
     6  egg
     7  fox
     8  gate
     9  hat
~$ 

空行以外に番号付け

~$ nl testfile
     1  apple
     2  banana
     3  candy
     4  dog
      
     5  egg
     6  fox
     7  gate
     8  hat
~$ 

開始番号を指定して番号付け(3番から)

~$ nl -ba -v3 testfile
     3  apple
     4  banana
     5  candy
     6  dog
     7  
     8  egg
     9  fox
    10  gate
    11  hat
~$ 

正規表現でマッチする行のみ番号付け(3文字の行)

~$ nl -bp^...$ testfile
       apple
       banana
       candy
     1  dog
       
     2  egg
     3  fox
       gate
     4  hat
~$