Skip to content

Instantly share code, notes, and snippets.

@glennschler
Last active December 19, 2015 09:49
Show Gist options
  • Save glennschler/5936170 to your computer and use it in GitHub Desktop.
Save glennschler/5936170 to your computer and use it in GitHub Desktop.
Various Android Nexus command line

Delete camera pictures and videos older than 1 year on the Android

cd SDCard/dcim
find . -type f -mtime +365 -print > x.txt
cat x.txt|xargs rm -f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment