Advertisement
mgaikema

change c files to c++ files

Oct 9th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.16 KB | None | 0 0
  1. # Changes all c files to c++ files.
  2. # http://bit.ly/2yCgDM5
  3.  
  4. # Change source files.
  5. rename 's/\.c/.cpp/' *.c
  6. # Change header files.
  7. rename 's/\.h/.hpp/' *.h
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement