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コマンド > uniq ソート済テキストの重複削除
|
|
~$ for i in `seq 40`;do expr $RANDOM % 10;done > testfile
~$ pr -5Jl1 testfile
4 1 0 8 0
5 2 4 9 9
0 5 4 5 9
8 2 9 2 2
9 4 1 7 8
3 3 3 9 0
2 1 4 7 7
7 5 9 7 6
~$
0
1
2
3
4
5
6
7
8
9
~$
0
1
2
3
4
5
7
8
9
~$
6
~$
4 0
3 1
5 2
3 3
5 4
4 5
1 6
5 7
3 8
7 9
~$
~$ pr -5Jl1 testfile
4 1 0 8 0
5 2 4 9 9
0 5 4 5 9
8 2 9 2 2
9 4 1 7 8
3 3 3 9 0
2 1 4 7 7
7 5 9 7 6
~$
重複文字列の削除
~$ sort testfile | uniq0
1
2
3
4
5
6
7
8
9
~$
重複した文字列のみ抽出
~$ sort testfile | uniq -d0
1
2
3
4
5
7
8
9
~$
重複していない文字列のみ抽出
~$ sort testfile | uniq -u6
~$
重複回数の表示
~$ sort testfile | uniq -c4 0
3 1
5 2
3 3
5 4
4 5
1 6
5 7
3 8
7 9
~$