Dave Jarvis' Repositories

git clone https://repo.autonoma.ca/repo/recipe-fiddle.git
#!/bin/bash

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