Skip to content

Instantly share code, notes, and snippets.

@darthsuogles
Created September 19, 2015 19:30
Show Gist options
  • Select an option

  • Save darthsuogles/c9a934289875ae874953 to your computer and use it in GitHub Desktop.

Select an option

Save darthsuogles/c9a934289875ae874953 to your computer and use it in GitHub Desktop.
Simple bash one-liners
# Change file names -> change spaces to under-scores
find . -name \*.ipynb -type f -exec bash -c 'mv "$@" $(echo "$@" | tr " " "_")' -- {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment