可能重複:
using bash: write bit representation of integer to file擊:寫整數二進制文件
我需要一個文件的大小寫入到一個二進制文件。例如:
$ stat -c %s in.txt
68187
$ stat -c %s in.txt >> out.bin
而不是寫「68187」字符串out.bin,我想寫的168187的4個字節INT表示要out.bin。
如何將「68187」轉換爲4個字節的int?
可能重複:
using bash: write bit representation of integer to file擊:寫整數二進制文件
我需要一個文件的大小寫入到一個二進制文件。例如:
$ stat -c %s in.txt
68187
$ stat -c %s in.txt >> out.bin
而不是寫「68187」字符串out.bin,我想寫的168187的4個字節INT表示要out.bin。
如何將「68187」轉換爲4個字節的int?
這是我能想出:
int=65534
printf "0: %.8x" $int | xxd -r -g0 >>file
現在根據字節序你可能希望交換的字節順序:
printf "0: %.8x" $int | sed -E 's/0: (..)(..)(..)(..)/0: \4\3\2\1/' | xxd -r -g0 >>file
例(解碼,所以它的可見):
printf "0: %.8x" 65534 | sed -E 's/0: (..)(..)(..)(..)/0: \4\3\2\1/' | xxd -r -g0 | xxd
0000000: feff 0000 ....
這是爲無符號的 int,如果int i s signed and value is negative您必須計算二進制補碼。簡單的數學。
您可以使用下面的函數來數值轉換成相應的字符:
chr() {
printf \\$(printf '%03o' $1)
}
你必須字節值以正確的順序(字節順序)的機器分別進行轉換,之後彼此/你使用的架構。所以我想,使用另一種支持二進制輸出的腳本語言會最好地完成這項工作。
echo 'obase=2;'`stat -c %s in.txt` | bc > out.bin
看看這對你的作品
perl -e "print pack('L',`stat -c %s in.txt`)">>out.bin
它看起來像一個重複的,但沒有一個答案真的有解決這個問題。 – 2012-03-31 11:16:03