First page
Back
Continue
Last page
Overview
Graphics
Output redirection
Output is by default displayed on screen
$ ls -la
$ cat <filename>
We can redirect it to a file with the
>
symbol
$ ls -la > output
$ cat output > output.2
Notes: