Created
August 26, 2020 14:18
-
-
Save heetbeet/b00c302b8799ef1c7ad051feb214f8ce to your computer and use it in GitHub Desktop.
Convert all bat files in a subdirectory to dos crlf format
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find . -name '*.bat' -type f -print0 | xargs -0 unix2dos -- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment