当前位置: 首页 > 图文教程 > 操作系统 > Unix/Linux > 如何来清除Linux系统命令的历史记录

Unix/Linux
在内核2.6.0-test中安装最新驱动NVIDIA 1.0-4620(共三种方法)
无软驱和光驱安装Redhat方法
如何通过PXE的方式远程安装linux(本地无 光 , 软驱)
网络安装的一点实践
VI 快速上手
Linux下Apache并发连接数和带宽控制
Redhat Linux升级SSH笔记
Linux技巧小总结
DOS兄弟玩转Linux
Linux下C开发环境的构成和安装
linux下通过脚本实现自动重启程序
vi介绍编 (3) ex命令
用 vi 多行注释
uptime 作弊方法
LINUX守护进程介绍
vi介绍编 (3) vi命令
vi介绍编 (1) vi快速入门
vi介绍编 (2) 参数简介
Linux管理员手册(9)--Keeping Time
Linux管理员手册(8)--备份

Unix/Linux 中的 如何来清除Linux系统命令的历史记录


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2010-04-20   浏览: 490 ::
收藏到网摘: n/a

步骤如下:
 
1、建立一个文件来存储常用命令,例如/root/history.txt,把常用命令当成文本写进去,每个命令占一行
 
2、在终端运行history -c,清除杂乱的历史记录
 
3、运行history -r /root/history.txt,把命令读进来作为当前bash的历史记录
 
4、运行history,就得到一个整洁的命令列表了,例如:
 

[root@localhost windata]# history -c [root@localhost windata]# history -r /root/history.txt [root@localhost windata]# history 1 history -r /root/history.txt 2 mount -t msdos -o iocharset=gb2312 /dev/sda1 /mnt/usb 3 mount -t vfat -o iocharset-gb2312 /dev/hda5 /mnt/windata 4 umount /mnt/windata 5 mount -t vfat -o iocharset-gb2312 /dev/hda5 /mnt/windata 6 cd /mnt/windata 7 history [root@localhost windata]#


5、以后命令乱了,重复1-4的步骤,又可以使命令很清楚了。