Advertisement
Guest User

Untitled

a guest
Jul 21st, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. # m h dom mon dow command
  2. # remove ~/Downloads dir
  3. * * * * * rm -rf ~/Downloads;
  4. # remove downloaded files without access in last 60 minutes
  5. * * * * * find ~/downloads/* -name "*" -amin +60 -delete;
  6. # mv files in home dir to download dir
  7. 0 * * * * find ~/ -maxdepth 1 -type f ! -name '.*' -exec mv {} ~/downloads/ \;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement