Panbyte is a C# console tool for conversions between various representations of byte sequences.
./panbyte [ARGS...]
ARGS:
-f FORMAT --from=FORMAT Set input data format
--from-options=OPTIONS Set input options
-t FORMAT --to=FORMAT Set output data format
--to-options=OPTIONS Set output options
-i FILE --input=FILE Set input file (default stdin)
-o FILE --output=FILE Set output file (default stdout)
-d DELIMITER --delimiter=DELIMITER Record delimiter (default newline)
-h --help Print help
FORMATS:
bytes Raw bytes
hex Hex-encoded string
int Integer
bits 0,1-represented bits
array Byte array
To build this project, you need a .NET 7.0 SDK to be installed.
To build the solution use (in /PV286-project/Panbyte):
dotnet build
To run the application use (in /PV286-project/Panbyte):
dotnet run --project Panbyte -- [Panbyte args]
Or by using:
dotnet run -- [Panbyte args]
in folder /PV286-project/Panbyte/Panbyte
To run the application use (in /PV286-project/Panbyte):
dotnet test