You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Possibly related to #104 but I'm not sure. With bash-preexec 0.4.0 and bash 5.0.18(1)-release, the preexec function is called with the last command when exiting bash with Ctrl-D:
dseomn@solaria:~$ preexec() { echo preexec "$@"; }
dseomn@solaria:~$ echo hi
preexec echo hi
hi
dseomn@solaria:~$
logout
preexec echo hi
The text was updated successfully, but these errors were encountered:
Huh, same behavior in 0.3.7. I guess I just never noticed it before. Removing my ~/.bash_logout fixes the problem, so this is almost definitely a duplicate of #27.
Possibly related to #104 but I'm not sure. With bash-preexec 0.4.0 and bash 5.0.18(1)-release, the preexec function is called with the last command when exiting bash with Ctrl-D:
The text was updated successfully, but these errors were encountered: