Skip to content

Instantly share code, notes, and snippets.

@apas
Created May 1, 2017 16:13
Show Gist options
  • Save apas/a28ca89fb6035312f6f3b74adf298baa to your computer and use it in GitHub Desktop.
Save apas/a28ca89fb6035312f6f3b74adf298baa to your computer and use it in GitHub Desktop.
Copy latest Dropbox screenshot(s) to current directory
getshots() {
numberOfFiles=${1}
ls -lthUr1 -d -1 ~/Dropbox/Screenshots/{*,.*} \
| tail -n ${numberOfFiles} \
| while read line; do
echo "${line}"; \
cp "${line}" .; \
done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment