You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you for the great tool, was very useful to extract data from raw protobuf captures without writing any code.
However, decode_raw is not very friendly with pipeline processing in bash: it always output data with terminal colors on, even if tool output is piped to another utility.
If it is possible, please add some "raw" flags, that suppress colorizing the output and data type hints - they are great for debugging, but complicate processing with tools like xxd -r -p (to convert hex to binary). For now it requires the following to get data for a bytes field:
Thank you for the great tool, was very useful to extract data from raw protobuf captures without writing any code.
However, decode_raw is not very friendly with pipeline processing in bash: it always output data with terminal colors on, even if tool output is piped to another utility.
If it is possible, please add some "raw" flags, that suppress colorizing the output and data type hints - they are great for debugging, but complicate processing with tools like
xxd -r -p
(to convert hex to binary). For now it requires the following to get data for abytes
field:It would be great to simplify that into
or even
However, I have no idea how
--raw
should work for several fields. Probably the tool can mimicjq -r
The text was updated successfully, but these errors were encountered: