5 lines
115 B
Bash
Executable File
5 lines
115 B
Bash
Executable File
#!/bin/sh
|
|
|
|
find . -name "*.c" -exec add-copyright-header {} \;
|
|
find . -name "*.h" -exec add-copyright-header {} \;
|