File size: 340 Bytes
8ae5fc5 | 1 2 3 4 5 6 7 8 | #!/bin/bash
# converts all files in the current directory with extensions .h .inl or .cu to unix format
#find . -type f \( -name "*.h" -o -name "*.inl" -o -name "*.cu" \) -a \( -not -wholename "*\.hg/*" \) -print
find . -type f \( -name "*.h" -o -name "*.inl" -o -name "*.cu" \) -a \( -not -wholename "*\.hg/*" \) -exec fromdos -d {} \;
|