Se você estiver usando o Bash, use o parâmetro $BASH_COMMAND
:
BASH_COMMAND
The command currently being executed or about to be executed, unless
the shell is executing a command as the result of a trap, in which case
it is the command executing at the time of the trap.
Algumas notas: Um, $BASH_COMMAND
fornece apenas o comando que falhou nos comandos compostos, não na linha de comando inteira.
$ function err_handler { echo "error: $BASH_COMMAND" }
$ trap err_handler ERR
$ true blah blah blah && false herp derp
error: false herp derp
Dois, um pipeline só falha se o último comando falhar. Ainda é bem-sucedido se os comandos intermediários falharem, mas o último comando for bem-sucedido:
$ echo okay | false herp derp | true lol
# err_handler not called, the last command returned true.
Três, $BASH_COMMAND
fornece a linha de comando unparsed , portanto, a primeira coisa na linha de comando não é necessariamente o nome do comando em circunstâncias incomuns:
$ false herp derp # This is okay.
error: false herp derp
$ {false,herp,derp} # An obfuscated way to write 'false blah blah'
error: {false,herp,derp}
$ cmd=false
$ $cmd herp derp
error: $cmd herp derp