2017-02-17 7 views
0

brew package managerを使用してMacintoshコンピュータにツールとプログラム環境をインストールすると、インストールの最後に、インストールしたばかりのものを使用する際のニュアンスが記載された重要なテキストが表示されることがよくあります。例えば、Redisのをインストールした後、あなたがbrew uninstall [thing];を実行してからbrew install [thing];を再実行するのショート以下Redisplay brewインストール後のテキスト

$ brew install redis 
# ... lots of stuff ... 
==> Caveats 
To restart redis after an upgrade: 
    brew services restart redis 
Or, if you don't want/need a background service you can just run: 
    redis-server /usr/local/etc/redis.conf 

のようなものが表示されます、醸造は、このテキストを再表示持つ方法はありますか?

- もしこのテキストがどこかのプログラムから来たのであれば、私はbrew-packageを入手する方法がありますか? (適切な用語ではないかと思いますが) - このテキストは、うまく構造化されたデータファイルやプログラムのどこかにありますか?

答えて

2

これらは「警告」と呼ばれ、brew infoで印刷されています。 youtube-dlと例については以下を参照してください:次に

$ brew install youtube-dl 
... 
==> Caveats 
To use post-processing options, `brew install ffmpeg` or `brew install libav`. 

Bash completion has been installed to: 
    /home/baptiste/.linuxbrew/etc/bash_completion.d 

zsh completion has been installed to: 
    /home/baptiste/.linuxbrew/share/zsh/site-functions 

fish completion has been installed to: 
    /home/baptiste/.linuxbrew/share/fish/vendor_completions.d 

==> Summary 
    /.../Cellar/youtube-dl/2017.03.10: 11 files, 1.8M 

$ brew info youtube-dl 
... 
==> Caveats 
To use post-processing options, `brew install ffmpeg` or `brew install libav`. 

Bash completion has been installed to: 
    /home/baptiste/.linuxbrew/etc/bash_completion.d 

zsh completion has been installed to: 
    /home/baptiste/.linuxbrew/share/zsh/site-functions 

fish completion has been installed to: 
    /home/baptiste/.linuxbrew/share/fish/vendor_completions.d 
あなたはまた、 brew info --json=v1で例えば式固有の注意事項(ない完了のもの)を取得することができ

$ brew info --json=v1 youtube-dl | jq . 
[ 
    { 
    "name": "youtube-dl", 
    "full_name": "youtube-dl", 
    "desc": "Download YouTube videos from the command-line", 
    "homepage": "https://rg3.github.io/youtube-dl/", 
    ... 
    "caveats": "To use post-processing options, `brew install ffmpeg` or `brew install libav`.", 
    ... 
    } 
] 

注意を私はjqを使って出力をあらかじめ確認しました。

関連する問題