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]# history1 history -r /root/history.txt2 mount -t msdos -o iocharset=gb2312 /dev/sda1 /mnt/usb3 mount -t vfat -o iocharset-gb2312 /dev/hda5 /mnt/windata4 umount /mnt/windata5 mount -t vfat -o iocharset-gb2312 /dev/hda5 /mnt/windata6 cd /mnt/windata7 history5、以後命令亂了,重複1-4的步驟,又可以使命令很清晰了。
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]# history1 history -r /root/history.txt2 mount -t msdos -o iocharset=gb2312 /dev/sda1 /mnt/usb3 mount -t vfat -o iocharset-gb2312 /dev/hda5 /mnt/windata4 umount /mnt/windata5 mount -t vfat -o iocharset-gb2312 /dev/hda5 /mnt/windata6 cd /mnt/windata7 history5、以後命令亂了,重複1-4的步驟,又可以使命令很清晰了。