Created
June 22, 2024 05:46
-
-
Save asdf913/65aa2113e4e596ed6f96f5bcbfbd1240 to your computer and use it in GitHub Desktop.
Convert all java file under all sub folder encoding from UTF-8 to CP932
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 "*.java" -type f -exec readlink -f {} \;|xargs -I {} iconv -f UTF-8 -t CP932 {}>{} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment