博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux系统下如何快速在最近的2个目录之间来回切换
阅读量:5870 次
发布时间:2019-06-19

本文共 716 字,大约阅读时间需要 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]# 
本文转自你是路人甲还是霍元甲博客51CTO博客,原文链接http://blog.51cto.com/world77/336126如需转载请自行联系原作者
world77
你可能感兴趣的文章
GNS关于IPS&ASA&PIX&Junos的配置
查看>>
七天学会ASP.NET MVC (四)——用户授权认证问题
查看>>
upgrade to iOS7,how to remove stroyboard?
查看>>
影响企业信息化成败的几点因素
查看>>
Thinkphp5 模型里别名alias不生效bug【已解决】
查看>>
SCCM 2016 配置管理系列(Part8)
查看>>
zabbix监控部署
查看>>
关于Tomcat下项目中文名在Windows和Linux下编码混乱问题解决
查看>>
struts中的xwork源码下载地址
查看>>
Android硬件抽象层(HAL)深入剖析(二)
查看>>
记录一些有用的代码技巧,不定期更新
查看>>
Centos 安装后不能上网 解决备忘
查看>>
cisco 交换机链路聚合
查看>>
[AX]AX2012 Form开发概览
查看>>
用几何画板画垂线的方法
查看>>
《构建之法》之第四章读后感
查看>>
C++对象模型
查看>>
第九章 Python之面向对象
查看>>
protoful进行序列化
查看>>
HTMLCSS学习笔记(五)----定位详解、层级、滤镜遮罩
查看>>