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:
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:
byteblitz -hex document.txt > output.txt
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