Run the following find command, saving standard output to a file> View the contents of the newly created file: $find /etc -name passwd > /tmp/find.out
$cat /tmp/find.out
Run another find command, saving standard output to the same file. $find /etc -name network > /tmp/find.out $cat /tmp/find.out
Note the the find command, above, overwrote the original find command output. Now, rerun the two find commands, appending the information. View the results: