0
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?

xxdコマンドメモ

Posted at

はじめに

いつもxxdコマンドのオプションで迷うのでメモする。

環境

OS: Ubuntu(24.04)
ISA: x86_64

オプション

ASCIIや、行番号を表示しないには

-p,--plain(plainモード)

xxd -p /usr/bin/echo

改行をなくすには

xxd -p /usr/bin/echo | tr -d '\n'

改行位置を変えるには

-c 改行バイト数

xxd -c 8 /usr/bin/echo

8バイトで折り返す。

0
0
0

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
0
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?