Skip to content

Instantly share code, notes, and snippets.

@jottr
Last active December 14, 2015 09:28
Show Gist options
  • Save jottr/5065153 to your computer and use it in GitHub Desktop.
Save jottr/5065153 to your computer and use it in GitHub Desktop.
Copy folders of a specified age to target dir
recentcp() { find `pwd` -mindepth 1 -maxdepth 1 -type d -mtime "${1}" -exec cp -rn -t "${2}" {} +; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment