Skip to content

Instantly share code, notes, and snippets.

@dnpp73
Last active December 19, 2015 01:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dnpp73/5874517 to your computer and use it in GitHub Desktop.
Save dnpp73/5874517 to your computer and use it in GitHub Desktop.
#!/bin/bash
SJIS_HTMLS=`find . -type f -name "*.htm*"`
for SJIS_HTML in $SJIS_HTMLS; do
echo $SJIS_HTML
mv $SJIS_HTML "${SJIS_HTML}_bak"
nkf -w8 "${SJIS_HTML}_bak" >> $SJIS_HTML
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment