Skip to content

Instantly share code, notes, and snippets.

@heetbeet
Created August 26, 2020 14:18
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save heetbeet/b00c302b8799ef1c7ad051feb214f8ce to your computer and use it in GitHub Desktop.
Convert all bat files in a subdirectory to dos crlf format
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