7 lines
No EOL
58 B
Bash
Executable file
7 lines
No EOL
58 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
for i in *.c; do
|
|
mv "$i" "${i}pp"
|
|
done |