We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a10e39 commit 9b78cfbCopy full SHA for 9b78cfb
dos2unix.sh
@@ -0,0 +1,5 @@
1
+#!/bin/bash
2
+for ext in c cpp h; do
3
+ find -iname \*.$ext | while read X; do dos2unix -- "$X" || exit 1; done
4
+done
5
+
0 commit comments