在用户注销时是否有默认方式运行命令?

在用户注销时是否有默认方式运行命令?

我想要记录我的用户的登录/注销。

对于登录,我只需要修改和添加我的命令或为特定用户/etc/profile编辑任何命令。.profile

但是对于注销,我不知道是否有像登录那样的默认/集中式方法/etc/profile

我看到了一些 CLI 会话的示例,但我想注册 GUI/CLI 会话。

谢谢

答案1

找到了这个主题:https://unix.stackexchange.com/questions/208277/how-can-i-set-a-bash-logout-for-all-users

摘自手册(man bash):

When a login shell exits, bash reads and executes commands from the files ~/.bash_logout and /etc/bash.bash_logout, if the files exists.

相关内容