Skip to content

Instantly share code, notes, and snippets.

@puginabox
Created November 20, 2014 16:23
Show Gist options
  • Save puginabox/432a305cf41f82730679 to your computer and use it in GitHub Desktop.
Save puginabox/432a305cf41f82730679 to your computer and use it in GitHub Desktop.
unix command for stripping and replacing whitespace in a bunch of files
for i in *.pdf; do mv "$i" "`echo $i | sed -e 's, ,-,g'`"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment