歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux基礎 >> Linux教程 >> Linux系統下如何快速在最近的2個目錄之間來回切換

Linux系統下如何快速在最近的2個目錄之間來回切換

日期:2017/2/28 16:03:10   编辑:Linux教程

本文介紹在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]#

Copyright © Linux教程網 All Rights Reserved