HEy guys i need a bit of a help here I have a godaddy VPS , and i'm looking for a way to clean out the TMP file which is full .. Is there any command I could run via SSH Putty to clean out temp file older then 12 hours ?
Hello there, I would suggest finding out why it keeps filling up, and also look at the size of it, and increase if it needs to. To answer your question though, this command should get the result you are looking for: find /tmp -cmin +720 -exec rm {} \; Code (markup): Chris