マニュアルページを他の言語で出力するオプションはありますか?私はコンピュータ言語を完全に変更したくなく、特定のマニュアルページだけを変更したいと思います。例えば
$ man -English man
Man is a manual program
…
$ man -Russian man
Инструцтия для Unix, BSD и Linux.
…
答え1
答え2
ローカライズされたマニュアルページを取得するには、次のように設定します。LC_MESSAGES
ロケール環境変数単一通貨の場合man
:
LC_MESSAGES=ru_RU man man
.bashrc
常にロシア語のマニュアルページが必要ですが、他のコマンドを英語で使用したい場合は、ユーザーまたは別のシェルの初期化ファイルでエイリアスを設定できます。
alias man='LC_MESSAGES=ru_RU man'
答え3
読みながらman man
環境変数を変更し、通常どおり man を使用する必要があるようです。あなたの言語で利用できない場合でも、英語版が表示されます。
International support is available with this package. Native lan‐
guage manual pages are accessible (if available on your system) via
use of locale functions. To activate such support, it is necessary
to set either $LC_MESSAGES, $LANG or another system dependent envi‐
ronment variable to your language locale, usually specified in the
POSIX 1003.1 based format:
<language>[_<territory>[.<character-set>[,<version>]]]
If the desired page is available in your locale, it will be dis‐
played in lieu of the standard (usually American English) page.