#!/bin/bash # Remove files more than 12 hours old. find /tmp/latex -mmin +720 -exec rm -f {} \; 2>/dev/null