Q. What does the 2>&1 at the end of the following command mean?find / -name fred.txt > names 2>&1 (Solved)
1. Send standard error to a file called &1
2. Append standard error to a file called &1
3. Send standard error to the same place as standard output
4. Send the output of the find command to /dev/null
- c. Send standard error to the same place as standard output