Skip to content

Instantly share code, notes, and snippets.

@furu
Created July 23, 2014 17:23
Show Gist options
  • Save furu/90df175056913b17af20 to your computer and use it in GitHub Desktop.
Save furu/90df175056913b17af20 to your computer and use it in GitHub Desktop.
#!/bin/bash
# 文字コードをUTF-8,改行コードをLFに変換する
# nkfコマンドが必要
if [ $# = 0 ]; then
echo "usage: win2unix filename"
exit 1
fi
for file in "$@"
do
if [ -f $file ]; then
mv $file ${file}.org
nkf -w -Lu ${file}.org > $file
else
echo "$file: No such file"
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment