bash refuses to give me the output of 'bind -p' when I pass it in with the -c switch:
bash -c 'bind -p'
but it works to type
bind -p
directly at the bash prompt, and it works to type something like
bash -c 'echo "hi"'
and zsh happily does exactly what bash refuses to do (well, the equivalent command in zsh):
zsh -c 'bindkey -L'
What on earth is going on???