Podcast
Questions and Answers
Match the following Linux redirection symbols with their descriptions:
Match the following Linux redirection symbols with their descriptions:
= Redirects standard output (stdout) to a file
= Appends standard output to a file 2> = Redirects standard error (stderr) to a file 2>> = Appends standard error to a file
Match the following Linux redirection commands with their examples:
Match the following Linux redirection commands with their examples:
= command > file.txt
= command >> file.txt 2> = command 2> error.txt 2>> = command 2>> error.txt
Match the following Linux redirection symbols with their purposes:
Match the following Linux redirection symbols with their purposes:
= Send the output of command to a file
= Append the output of command to a file 2> = Send the error output of command to a file 2>> = Append the error output of command to a file