LoginSignup
61
41

More than 5 years have passed since last update.

【メモ】コマンドでのBOMの追加・削除・確認

Posted at

BOMの確認

BOM(文字コードの確認)は file コマンドでできる

$ file hoge.txt
hoge.txt: ASCII text # ← BOMなしUTF8
$ file hoge.txt
hoge.txt: UTF-8 Unicode (with BOM) text # ← BOMありUTF8

BOMの追加・削除

nkf でやるのが楽

$ nkf --overwrite --oc=UTF-8 hoge.txt # BOMの削除
# hoge.txt: ASCII text
$ nkf --overwrite --oc=UTF-8-BOM hoge.txt # BOMの追加
hoge.txt: UTF-8 Unicode (with BOM) text
61
41
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
61
41