Skip to content

Instantly share code, notes, and snippets.

@oosugi20
Created January 6, 2012 10:06
Show Gist options
  • Save oosugi20/1569953 to your computer and use it in GitHub Desktop.
Save oosugi20/1569953 to your computer and use it in GitHub Desktop.
ターミナルで文字コードが違うやつのパスを出力
for f in `find ./ -name *.htm*`;
do
if test `nkf -g $f` != 'Shift_JIS';
then
echo $f;
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment