3Ιαν2014
Cleaning Up Your /tmp…The Safe Way find /tmp -type f -name sess_* | xargs rm -f Cron Job to Delete files in /tmp directory First create the script and test it. Here is a sample script that you would then need to modify: #!/bin/sh find /tmp -type f -name sess_* | xargs rm -f #remove […]
Continue Reading