Skip to content

Instantly share code, notes, and snippets.

@jasonsperske
Created April 20, 2016 21:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasonsperske/d75d2c03f8d42abf667cb61a1970c835 to your computer and use it in GitHub Desktop.
Save jasonsperske/d75d2c03f8d42abf667cb61a1970c835 to your computer and use it in GitHub Desktop.
Trim the first 3 characters from all filenames
for f in *; do mv "$f" "${f:3}"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment