0

シェルスクリプトのエンコーディングを決定しようとしています。次の「file」コマンドは「application/x-shellscript」を返します。これは実際のエンコーディングですか?「utf-8」や「ascii」などの標準エンコーディングを期待していました。私は何が欠けていますか?

file --mime test.sh
test.sh: application/x-shellscript

編集:私はファイルを私のmacbookに移動しました、そしてそれは働きました:

file --mime test.sh
test.sh: text/x-shellscript; charset=us-ascii
4

1 に答える 1

1

--mime-encodingスイッチを試してください:

file --mime-encoding test.sh
于 2013-03-18T21:31:12.070 に答える