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
{{ message }}
This repository was archived by the owner on Nov 29, 2024. It is now read-only.
Currently, byteblitz allows users to view the binary content of files. However, it cannot directly redirect the output to a file using the standard output redirection operator (>).
Proposed Feature:
Implement functionality in byteblitz so that users can redirect the formatted output directly to a target file using the > operator. The expected command structure after implementation would be:
byteblitz -<format><filename>> output.file
Example:
If a user wants to view the contents of a file named cool.png in hexadecimal , and save the formatted result into output.txt, they could use:
Issue Description:
Feature Request: Output Redirection to file
Background:
Currently, byteblitz allows users to view the binary content of files. However, it cannot directly redirect the output to a file using the standard output redirection operator (>).
Proposed Feature:
Implement functionality in byteblitz so that users can redirect the formatted output directly to a target file using the > operator. The expected command structure after implementation would be:
Example:
If a user wants to view the contents of a file named
cool.pngin hexadecimal , and save the formatted result intooutput.txt, they could use:byteblitz -hex document.txt > output.txt