bashハッシュの$ PATHに何かがある場合、そのスクリプトの内容をダンプする方法はありますか?
たとえば、これを行うと:
$ type ores_git_push
私は得る:
ores_git_push is hashed (/usr/local/bin/ores_git_push)
スクリプトの内容を取得する方法はありますか?
私がするなら:
$ type -a ores_git_push
私は得る:
ores_git_push is /Users/oleg/.nvm/versions/node/v10.10.0/bin/ores_git_push ores_git_push is /usr/local/bin/ores_git_push
それで最悪のシナリオでは結果を分析してみることができると思いましたtype -a
。
答え1
cat "$(type -p ores_git_push)"
答え2
その古い猫の命令はどうですか?
cat /usr/local/bin/ores_git_push
答え3
ハッシュがなぜ重要なのかはよくわかりませんが、次のようにできます。
cat $(which ores_git_push)