回答:
デバッグをオンにします。Bashマニュアルから:
extdebug
シェルの呼び出し時、またはシェルの起動ファイルで設定されている場合は、
--debugger
オプションと同じように、シェルが起動する前にデバッガープロファイルを実行するように調整し ます。呼び出し後に設定すると、デバッガーによる使用を目的とした動作が有効になります。
-F
オプションdeclare
組み込みは、(参照バッシュ組み込みコマンド)の引数として供給される各関数名に対応するソースファイル名と行番号を表示します。
例:
$ bash --debugger
$ declare -Ff quote
quote 143 /usr/share/bash-completion/bash_completion
本当に:
$ nl -ba /usr/share/bash-completion/bash_completion | sed -n 143,150p
143 quote()
144 {
145 local quoted=${1//\'/\'\\\'\'}
146 printf "'%s'" "$quoted"
147 }
148
149 # @see _quote_readline_by_ref()
150 quote_readline()
shopt -s extdebug; declare -Ff quote; shopt -u extdebug
。
find_function()( shopt -s extdebug; declare -F "$@"; )
。関数の本体に括弧があると、サブシェルで実行され、shoptsへの変更は呼び出し元に影響しません。そして、それ-f
は必要ではないようです。
これは実際には最初に表示されるよりも複雑です。どのファイルがシェルによって読み取られるかは、現在実行しているシェルのタイプによって異なります。対話型かどうか、ログインシェルか非ログインシェルか、および上記の組み合わせ。さまざまなシェルで読み取れるすべてのデフォルトファイルを検索するには、次のようにします($functionName
探している関数の実際の名前に変更します)。
grep "$functionName" ~/.bashrc ~/.profile ~/.bash_profile ~/.bash.login \
~/.bash_aliases /etc/bash.bashrc /etc/profile \
/etc/profile.d/* /etc/environment 2> /dev/null
それが機能しない場合は、.
またはそのエイリアスを使用してデフォルト以外のファイルを呼び出している可能性がありますsource
。そのような場合を見つけるには、次を実行します。
grep -P '(^|\s)(\.|source)\s+' ~/.bashrc ~/.profile ~/.bash_profile \
~/.bash.login ~/.bash_aliases /etc/bash.bashrc \
/etc/profile /etc/profile.d/* /etc/environment 2> /dev/null
それにはおそらく説明が必要です。これ-P
により、Perl Compatible Regular Expressions(PCRE)が有効になり、より洗練された正規表現構文を使用できます。具体的には:
(^|\s)
:行頭(^
)または空白(\s
)のいずれかに一致します。(\.|source)\s+
:リテラル.
文字(\.
)または単語のいずれかに一致しますが、source
その後に1つ以上の空白文字が続く場合のみ。私のシステムで得られるものは次のとおりです。
$ grep -P '(^|\s)(\.|source)\s+' ~/.bashrc ~/.profile ~/.bash_profile \
> ~/.bash.login ~/.bash_aliases /etc/bash.bashrc \
> /etc/profile /etc/profile.d/* /etc/environment 2> /dev/null
/home/terdon/.bashrc: . /etc/bashrc
/home/terdon/.bashrc: . /etc/bash_completion
/home/terdon/.bashrc:. $HOME/scripts/git-prompt.sh
/home/terdon/.bashrc:# echo -n "$n : "; grep "^CA" $n |perl -e 'my ($a,$c)=0; while(<>){$c++;next if /cellular_component_unknown/; next if /biological_process/; $a++} print "$a Classes of $c annotated (" . $a*100/$c . ")\n"'
/etc/bash.bashrc:[ -r /usr/share/bash-completion/bash_completion ] && . /usr/share/bash-completion/bash_completion
/etc/profile: test -r "$profile" && . "$profile"
/etc/profile: . /etc/bash.bashrc
/etc/profile.d/locale.sh: . "$XDG_CONFIG_HOME/locale.conf"
/etc/profile.d/locale.sh: . "$HOME/.config/locale.conf"
/etc/profile.d/locale.sh: . /etc/locale.conf
/etc/profile.d/Z97-byobu.sh: . /usr/bin/byobu-launch
/etc/profile.d/Z97-byobu.sh: . /usr/bin/byobu-launch
/etc/profile.d/Z97-byobu.sh: . /usr/bin/byobu-launch
/etc/profile.d/Z97-byobu.sh: . /usr/bin/byobu-launch
/etc/profile.d/Z97-byobu.sh: . /usr/bin/byobu-launch
ただし、ご覧のとおり、一致した行全体が印刷されます。私たちが本当に興味を持っているのは、それらを呼び出す行ではなく、呼び出されるファイル名のリストです。これら、より複雑な正規表現でそれらを取得できます:
grep -hPo '(^|\s)(\.|source)\s+\K\S+' ~/.bashrc ~/.profile ~/.bash_profile \
~/.bash.login ~/.bash_aliases \
/etc/bash.bashrc /etc/profile \
/etc/profile.d/* /etc/environment 2> /dev/null
この-h
フラグは、一致が見つかったファイル名の出力を抑制しgrep
ます。これは、複数のファイルを検索するように指示されたときにデフォルトで実行されます。-o
は、「行の一致部分のみを印刷する」という意味です。正規表現に追加されるものは次のとおりです。
\K
:この時点までに一致したものはすべて無視します。これは、複雑な正規表現を使用して一致を見つけることができますが、grepの-o
フラグを使用するときに一致した部分を含めないPCREトリックです。私のシステムでは、上記のコマンドは以下を返します:
$ grep -hPo '(^|\s)(\.|source)\s+\K\S+' ~/.bashrc ~/.profile ~/.bash_profile \
> ~/.bash.login ~/.bash_aliases \
> /etc/bash.bashrc /etc/profile \
> /etc/profile.d/* /etc/environment 2> /dev/null
/etc/bashrc
/etc/bash_completion
$HOME/scripts/git-prompt.sh
$a*100/$c
")\n"'
/usr/share/bash-completion/bash_completion
"$profile"
/etc/bash.bashrc
"$XDG_CONFIG_HOME/locale.conf"
"$HOME/.config/locale.conf"
/etc/locale.conf
/usr/bin/byobu-launch
/usr/bin/byobu-launch
/usr/bin/byobu-launch
/usr/bin/byobu-launch
/usr/bin/byobu-launch
私はたまたま、ソースには使用されない.
スペースが続くことに注意してください。それは、bashではなく別の言語を呼び出しているエイリアスがあるためです。それが奇妙なことになり、上記の出力になります。しかし、それは無視できます。$a*100/$c
")\n"'
最後に、これらすべてをまとめて、すべてのデフォルトファイルとデフォルトファイルのソースとなっているすべてのファイルで関数名を検索する方法を次に示します。
grep_function(){
target="$@"
files=( ~/.bashrc ~/.profile ~/.bash_profile ~/.bash.login
~/.bash_aliases /etc/bash.bashrc /etc/profile
/etc/profile.d/* /etc/environment)
while IFS= read -r file; do
files+=( "$file" )
done < <(grep -hPo '(^|\s)(\.|source)\s+\K\S+' "${files[@]}" 2>/dev/null)
for file in "${files[@]}"; do
## The tilde of ~/ can break this
file=$(sed 's|~/|'"$HOME"'/|g' <<<"$file")
if [[ -e $file ]]; then
grep -H "$target" -- "$file"
fi
done
}
これらの行を追加して~/.bashrc
、実行できます(fooBar
関数名の例として使用しています):
grep_function fooBar
たとえば、私の行にこの行がある場合~/.bashrc
:
. ~/a
ファイル~/a
は次のとおりです。
$ cat ~/a
fooBar(){
echo foo
}
私はそれを見つける必要があります:
$ grep_function fooBar
/home/terdon/a:fooBar(){
+=
array+="foo"
文字列foo
を追加する以外のことを意味しますか?
通常のドットファイルは、ユーザーごとのbash
読みがあります~/.bashrc
。ただし、他のファイルを非常によくソースする可能性があります。たとえば、エイリアスと関数を~/.bash_aliases
andと呼ばれる別のファイルに保存しておくと~/.bash_functions
、それらを簡単に見つけることができます。あなたは検索できる.bashrc
ためsource
でコマンド:
grep -E '(^\s*|\s)(\.|source)\s' /home/USERNAME/.bashrc
ユーザーが作成したファイルのリストを取得したら、たとえば、私のセットアップの機能のために、.bashrc
1回のgrep
呼び出しでそれらとユーザーのファイルを検索できfoo
ます。
grep foo /home/USERNAME/.bash{rc,_aliases,_functions}