Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
数値をそれに相当するバイトに変換したい。現在、私はこれを行います:
echo $((0xe0)) | hexdump -c
そして、私はこの出力を取得します:
0000000 2 2 4 \n
私が取得したいものは次のとおりです。
0000000 e0
どうすればいいですか?
あなたが試すことができます:
printf '\xe0' echo -ne '\xe0'