Delete files older than 5 days with script by Igor | Mar 23, 2015 | Hosting, Linux #!/bin/bash find /tmp/ -type f -mtime +5 -exec rm -f {} \;
Recent Comments