用户的历史命令都会被保存到用户家目录的“.bash_history”文件中。因为以“.”开头的文件都是隐藏文件,所以我们可以通过”ll –a ~/.bash_history” 命令看到该文件
我们可以通过“cat ~./bash_history”查看该文件中的内容。也可以直接通过history命令直接查看
清空history的命令为
history -c
用户的历史命令都会被保存到用户家目录的“.bash_history”文件中。因为以“.”开头的文件都是隐藏文件,所以我们可以通过”ll –a ~/.bash_history” 命令看到该文件
我们可以通过“cat ~./bash_history”查看该文件中的内容。也可以直接通过history命令直接查看
清空history的命令为
history -c