Skip to content

Instantly share code, notes, and snippets.

@matrixd
Created August 10, 2015 13:46
Show Gist options
  • Save matrixd/ce5c8026933e5fc9f583 to your computer and use it in GitHub Desktop.
Save matrixd/ce5c8026933e5fc9f583 to your computer and use it in GitHub Desktop.
Rename all .h to .hpp
for f in $(ls *.h)
do
mv $f ${f%%.h}".hpp"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment