#!/bin/bash

# Clean up any lingering "mktemp" files older than 7 days

find /tmp -name "tmp.*" -mtime +7 -exec rm -r {} \;
