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コマンド > dd バイナリ生成
|
|
数値オール0のサイズ512Byteのファイルを作る
$ dd if=/dev/zero of=out.bin bs=512 count=11+0 records in
1+0 records out
512 bytes (512 B) copied, 0.000159643 s, 3.2 MB/s
~$ od -tx1 -Ax out.bin
000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
*
000200
~$
~$ rm -rf out.bin
バイナリ書き換え(手動入力)
$ dd of=out.bin bs=1 seek=5 conv=notrunc・・・キーボードから入力する(Ctrl-Dを2回で入力終了)
以下は12345と入力した結果
123455+0 records in
5+0 records out
5 bytes (5 B) copied, 6.13252 s, 0.0 kB/s
~$ od -tx1 -Ax out.bin
000000 00 00 00 00 00 31 32 33 34 35 00 00 00 00 00 00
000010 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
*
000200
~$