1、建立一個文件來存儲
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的步驟,又可以使命令很清晰了。