|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
给你装的系统里为ubuntu12.04,它已经封装的很臃肿了,但是考虑到你没有很多时间投入其中,所以给你装了它,但是怎么用它提高开发效率,需要你在学习的过程中不断总结;
步骤以下:
1、创建一个文件来存储经常使用命令,比方/root/history.txt,把经常使用命令当做文本写出来,每一个命令占一行
2、在终端运转history-c,扫除混乱的汗青纪录
3、运转history-r/root/history.txt,把命令读出去作为以后bash的汗青纪录
4、运转history,就失掉一个整齐的命令列表了,比方:
[root@localhostwindata]#history-c
[root@localhostwindata]#history-r/root/history.txt
[root@localhostwindata]#history
1history-r/root/history.txt
2mount-tmsdos-oiocharset=gb2312/dev/sda1/mnt/usb
3mount-tvfat-oiocharset-gb2312/dev/hda5/mnt/windata
4umount/mnt/windata
5mount-tvfat-oiocharset-gb2312/dev/hda5/mnt/windata
6cd/mnt/windata
7history
[root@localhostwindata]#
5、今后命令乱了,反复1-4的步骤,又可使命令很明晰了
</p>
linux系统的文件布置,etc/,opt/目录的内容等; |
|