buzzcasper
Technical User
Here's the code I'm currently using:
"find /tmp -name "pri*_dumptrace*" -mtime +7 -exec rm {} \;
-print"
I want to know if there's a way I can stop this command from going into the subdirectories of the /tmp directory that I don't have access to get into (the command tries to get in the subdirectories spitting errors out to me); I could send the error messages to /dev/null but I want to see if there's a better solution.
Brett
"find /tmp -name "pri*_dumptrace*" -mtime +7 -exec rm {} \;
-print"
I want to know if there's a way I can stop this command from going into the subdirectories of the /tmp directory that I don't have access to get into (the command tries to get in the subdirectories spitting errors out to me); I could send the error messages to /dev/null but I want to see if there's a better solution.
Brett