bash (Linux) で C# コードと同等のコードを見つけようとしています。
私はこのC#コードを持っています:
// C# to convert a byte array to a string.
byte [] dBytes = ...
string str;
System.Text.UTF8Encoding enc = new System.Text.UTF8Encoding();
str = enc.GetString(dBytes);
fedora Linux マシンで bash を実行しています。
次のように、空白で区切られたテキストとしてすべてのバイト配列を含むファイルをbashで取得しています。
「72 0 101 0 108 0 108 0 111 0 32 0 87 0 111 0 114 0 108 0 100 0 33 0」
何か案は?