From bash manual
_
At shell startup, set to the absolute pathname used to invoke the shell or shell script being executed as passed in the environment or argument list. Subsequently, expands to the last argument to the previous command, after expansion. Also set to the full pathname used to invoke each command executed and placed in the environment exported to that command. When checking mail, this parameter holds the name of the mail file.
Regarding the sentence in bold, Stephane said that
bash, like a few other shells will pass a
_
environment variable to commands it executes that contains the path that bash used as the first argument to theexecve()
system calls.$ env | grep '^_' _=/usr/bin/env
How can I get the environment variable _
's value for an arbitrary command instead of env
, to verify that its value is the pathname of the executable or script for the command?
Thanks.