3 lines
73 B
Bash
3 lines
73 B
Bash
|
|
#!/bin/sh
|
||
|
|
find . \( -iname "*.h" -o -iname "*.c" \) -exec dos2unix {} \;
|