0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Macにおけるファイルエンコーディングの確認方法

Posted at

##はじめに
プロを目指す人にためのRuby入門に取り組んでいたところ、ファイルエンコーディングを確認する機会があったため、忘れないようにメモとして残しておこうと思います。

##ファイルエンコーディングの確認方法
ファイルエンコーディングを確認する際はfileコマンドを使用します。--mime-encodingをオプションとして加えることによって、ファイルエンコーディングのみ出力されます。

コンソール
file --mime-encoding sample.rb 
sample.rb: utf-8

出力結果から、ファイルエンコーディングはUTF-8だとわかりました。

UTF-8 (文字コードとファイルエンコーディングの違いで混乱した時に読んだ記事です)

0
1
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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?