Created
May 24, 2020 19:54
-
-
Save andreadellacorte/610720b23d86abf4e664766ed3fb34fc to your computer and use it in GitHub Desktop.
Convert a folder to unix; usage dirdox2unix <folder>
This file contains 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
pushd $1 | |
find . -type f -print0 | xargs -0 dos2unix | |
popd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment