Linux系统下如何快速在最近的2个目录之间来回切换
本文介绍在Linux系统下如何在最近使用的2个目录中来回切换,呵呵,老鸟的话就可以飘过,本文介绍只是雕虫小技。
下列操作在rhel 5.4下面操作成功。
可以 用cd - 在最近的2个访问的目录之间快速切换,呵呵,下面看下效果
[root@localhost ~]# mkdir test1
[root@localhost ~]# mkdir test2
[root@localhost ~]# cd test1
[root@localhost test1]# pwd
/root/test1
[root@localhost test1]# cd ../test2
[root@localhost test2]# cd -
/root/test1
[root@localhost test1]# pwd
/root/test1
[root@localhost test1]# cd -
/root/test2
[root@localhost test2]# pwd
/root/test2
[root@localhost test2]# cd /etc/httpd/
[root@localhost httpd]# pwd
/etc/httpd
[root@localhost httpd]# cd -
/root/test2
[root@localhost test2]# cd -
/etc/httpd
[root@localhost httpd]#
相关推荐
yutou0 2020-10-17
codedecode 2020-11-14
farwang 2020-11-25
星愿心愿 2020-11-24
tianhuak 2020-11-24
zhjn0 2020-11-24
昭君出塞 2020-11-23
bluecarrot 2020-11-23
linuxwcj 2020-10-21
以梦为马不负韶华 2020-10-20
彼岸随笔 2020-10-20
applecarelte 2020-10-16
ourtimes 2020-10-16
waterhorse 2020-09-19
MRFENGG 2020-11-11
rainandtear 2020-10-30
kyssfanhui 2020-10-20