1. 程式人生 > >[linux命令] od命令

[linux命令] od命令

-- oct str ngs line input 參考 octal format

參考網址:http://man.linuxde.net/od

語法 od(選項)(參數)

od(選項)(參數)

-a:此參數的效果和同時指定“-ta”參數相同;

-A:<字碼基數>:選擇以何種基數計算字碼;

-b:此參數的效果和同時指定“-toC”參數相同;

-c:此參數的效果和同時指定“-tC”參數相同;

-d:此參數的效果和同時指定“-tu2”參數相同;

-f:select floats

-h:此參數的效果和同時指定“-tx2”參數相同;

-i:select decimal ints;

-j<字符數目>或--skip-bytes=<字符數目>:略過設置的字符數目;

-l:此參數的效果和同時指定“-td4”參數相同;

-N<字符數目>或--read-bytes=<字符數目>:limit dump to BYTES input bytes;

-o:select octal 2-byte units;

-s<字符串字符數>或--strings=<字符串字符數>:output strings of at least BYTES graphic chars;

-t<輸出格式>或--format=<輸出格式>:設置輸出格式;

-v或--output-duplicates:輸出時不省略重復的數據;

-w<每列字符數>或--width=<每列字符數>:output BYTES bytes per output line;

-x:select hexadecimal 2-byte units;

--help:在線幫助;

--version:顯示版本信息。


例子:

[linux命令] od命令