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コマンド > tail テキスト末尾抽出
|
|
~$ seq 20 > testfile
~$ ls
testfile
11
12
13
14
15
16
17
18
19
20
~$
18
19
20
~$
15
16
17
18
19
20
~$
~$ ls
testfile
ファイル末尾から10行抽出
~$ tail testfile11
12
13
14
15
16
17
18
19
20
~$
末尾から指定行数分抽出
~$ tail -3 testfile18
19
20
~$
指定行目以降を抽出
~$ tail -n +15 testfile15
16
17
18
19
20
~$