trisquel-icecat/icecat/modules/fdlibm/rename_c_to_cpp.sh

7 lines
No EOL
58 B
Bash
Executable file

#!/bin/sh
set -e
for i in *.c; do
mv "$i" "${i}pp"
done