清除登陆系统成功的记录
last echo >/var/log/wtmp
清除登陆系统失败的记录
lastb echo > /var/log/btmp
清除历史执行命令
history history -c echo > ./.bash_history
查看当前登录用户
w who
查看自己的用户名
whoami
查看所有用户
cat /etc/passwd |cut -f 1 -d : cut -d : -f 1 /etc/passwd cat /etc/passwd |awk -F \: '{print $1}'
原创文章,转载请注明:转载自Web开发笔记 | Linux清除用户登录记录和命令历史的方法
本文链接地址:https://www.magentonotes.com/linux-clear-last-history-command.html
Comments on this entry are closed.