Linux - Utilizing Input and Output Redirection
Introduction to Redirection
There are situations where saving the output of a program to a file is necessary for later analysis. For instance, if you have a compiled program named myprog, you can disassemble it and store the result in a file called output using the following command:
objdump -d myprog > output
The > symbol is used for re ...
Posted on Sun, 07 Jun 2026 18:06:23 +0000 by MarCn