The command below will search the root filesystem for files named "finance.db". In this context, what information is being sent to /dev/null?
find / -name "finance.db" 1>results.txt 2>/dev/null
The command below will search the root filesystem for files named "finance.db". In this context, what information is being sent to /dev/null?
find / -name "finance.db" 1>results.txt 2>/dev/null