In Linux, everything is a file. Redirection comes in very handy because you can move data from a file to another file, from the resulting output of a command to a file. You can also redirect the output of one command and feed it as an input to another command.
The >
symbol is used for redirecting output of one command to a new file or another command.
For example:
ls -al > listing.txt
or
echo 'hello, this is some info' > hello.txt
>
writes the output. Meaning, if there is anything already in that file, or if there is an existing file with the same name, it’ll be overwritten. To append the redirected output at the end of a file, use >>
.
For example:
echo 'my name is Aamnah, add this at the end' >> hello.txt
>&
redirects the outputs of one file to another while <
is the input redirection operator.&>
redirects stdout as well as stderr