Last active
December 31, 2015 03:09
-
-
Save toleillo/7925338 to your computer and use it in GitHub Desktop.
Fix bad codification filenames with special chars in GNU/Linux Distros.
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
1 - Install convmv package | |
Ex: Debian | sudo apt-get install convmv | |
2 - Rename invalid filenames and convert to UTF-8 encoding | |
find . -name '?' | xargs convmv -r --notest -f cp850 -t UTF-8 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment