How can I store the file that find produces i.e the actual file and contents as a file and not the console output of find?
Currently I’m doing this to try and store the actual file and its contents the find command finds as I’m searching for a file named Myfile: find /Users/Documents -name Myfile > outputfile The …