受け取った大量のファイルが全てShift_JISだったときのためにメモ。
shell
find . -type f | while read FILE
do
nkf -w --overwrite ${FILE}
done
Go to list of users who liked
More than 3 years have passed since last update.
受け取った大量のファイルが全てShift_JISだったときのためにメモ。
find . -type f | while read FILE
do
nkf -w --overwrite ${FILE}
done
Register as a new user and use Qiita more conveniently
Go to list of users who liked