Skip to content

Instantly share code, notes, and snippets.

@ruslander
Last active December 13, 2015 18:48
Show Gist options
  • Save ruslander/4957796 to your computer and use it in GitHub Desktop.
Save ruslander/4957796 to your computer and use it in GitHub Desktop.
Renaming Erlang projects in nix shell
rename 's/^static_world/web/' static_world*
osx
find . -type f -print0 | xargs -0 sed -i '' -e 's/static_world/web/g'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment