I have a script that when executed generates a temp file that i want deleted 10 minutes after the script completes.
I have looked at the "at" command which does what I need, but it requires interactive input. Is there any way to do this non-interactively?
– Karim Apr 05 '13 at 11:40at now + 10 min <<'EOF' rm $file EOF