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 |
Windowsコマンド > SORT 並び替え
|
|
C:\sample>TYPE file1
dog
fun
banana
good
jam
apple
egg
hot
cat
ice
C:\sample>
apple
banana
cat
dog
egg
fun
good
hot
ice
jam
C:\sample>
jam
ice
hot
good
fun
egg
dog
cat
banana
apple
C:\sample>
jam
banana
cat
ice
egg
dog
good
hot
apple
fun
C:\sample>
ice
dog
egg
jam
fun
banana
good
apple
cat
hot
C:\sample>
dog
fun
banana
good
jam
apple
egg
hot
cat
ice
C:\sample>
指定なしでソートする
C:\sample>SORT file1apple
banana
cat
dog
egg
fun
good
hot
ice
jam
C:\sample>
逆順にソートする
C:\sample>SORT /R file1jam
ice
hot
good
fun
egg
dog
cat
banana
apple
C:\sample>
バイト位置を指定してソートする(2バイト目)
C:\sample>SORT /+2 file1jam
banana
cat
ice
egg
dog
good
hot
apple
fun
C:\sample>
バイト位置を指定してソートする(3バイト目)
C:\sample>SORT /+3 file1ice
dog
egg
jam
fun
banana
good
apple
cat
hot
C:\sample>