Last active
October 11, 2025 19:33
-
-
Save JamesChevalier/8448512 to your computer and use it in GitHub Desktop.
Revisions
-
JamesChevalier revised this gist
Jan 16, 2014 . 1 changed file with 4 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,11 +1,13 @@ [convmv manpage](https://www.j3e.de/linux/convmv/man/) Install convmv if you don't have it `sudo apt-get install convmv` Convert all files in a directory from NFD to NFC: `convmv -r -f utf8 -t utf8 --nfc --notest .` Convert all files in a directory from NFC to NFD: `convmv -r -f utf8 -t utf8 --nfd --notest .` -
JamesChevalier revised this gist
Jan 16, 2014 . 1 changed file with 3 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,8 +1,11 @@ Install convmv if you don't have it `sudo apt-get install convmv` Convert all files in a directory from NFD to NFC: `convmv -r -i -f utf8 -t utf8 --nfc --notest .` Convert all files in a directory from NFC to NFD: `convmv -r -i -f utf8 -t utf8 --nfd --notest .` -
JamesChevalier revised this gist
Jan 16, 2014 . 1 changed file with 3 additions and 3 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,8 +1,8 @@ Install convmv if you don't have it `sudo apt-get install convmv` Convert all files in a directory from NFD to NFC: `convmv -r -i -f utf8 -t utf8 --nfc --notest .` Convert all files in a directory from NFC to NFD: `convmv -r -i -f utf8 -t utf8 --nfd --notest .` -
JamesChevalier renamed this gist
Jan 16, 2014 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
JamesChevalier revised this gist
Jan 16, 2014 . 1 changed file with 1 addition and 3 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -5,6 +5,4 @@ `convmv -r -i -f utf8 -t utf8 --nfc --notest .` # Convert all files in a directory from NFC to NFD: `convmv -r -i -f utf8 -t utf8 --nfd --notest .` -
JamesChevalier created this gist
Jan 16, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ # Install convmv if you don't have it `sudo apt-get install convmv` # Convert all files in a directory from NFD to NFC: `convmv -r -i -f utf8 -t utf8 --nfc --notest .` # Convert all files in a directory from NFC to NFD: `convmv -r -i -f utf8 -t utf8 --nfd --notest.` # To test and confirm, you can omit the option `--notest .`