1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Linuxで同一値で埋められたバイナリファイルを作成する

Last updated at Posted at 2019-01-15

####0で埋められたバイナリファイルを作成する

head -c 1024 /dev/zero > data

####ある値で埋められたバイナリファイルを作成する
シェルはバイナリを手軽に扱えるようなコマンドが不足しているため、現状なやり方は見つかっていない。

echo a > data
vim -b data

:%!xxd "バイナリ編集可能にするvimのコマンド

埋めたい値に編集する。
2バイト出ないとうまく行かないため、2バイト分同一の値にする。

*%!xxd -r "バイナリ編集を戻すvimのコマンド
:w

yes `cat data` | tr -d "\n" | head -c 1024 /dev/zero > data

追記:
もっと良いやり方を紹介いただいたので追記します。

0xFFで埋まったバイナリファイルを作成する。
head -c 32 /dev/zero | tr \0 \377 ; echo
1
0
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?