I am trying to find a file on my ftp server using the find command
find ./* -iname "MyLog.log"
I get a very large amount of output. I am trying to redirect this output to a file using the commands below.
find ./* -iname "MyLog.log" > ./myfile/storeLog.log
and
find ./* -iname "MyLog.log" tee ./myfile/storeLog.log
However, I can see the output in the console, but not in the file.
Can someone help me on how I can redirect the output to a file when we use the find command on unix.
redirect linux unix output console
Prathap
source share