Skip to content

Instantly share code, notes, and snippets.

@michiel
Created June 12, 2013 16:44
Show Gist options
  • Select an option

  • Save michiel/5767039 to your computer and use it in GitHub Desktop.

Select an option

Save michiel/5767039 to your computer and use it in GitHub Desktop.
bash rename js files to coffee
#!/bin/bash
for files in *.js
do
mv "$files" "${files%.js}.coffee"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment