看一下这个步骤:
:~$ cd programacion/
:~/programacion$ cd sports/
:~/programacion/sports$ cd src/
:~/programacion/sports/src$ cd Sports/
:~/programacion/sports/src/Sports$ cd PlatformBundle/
:~/programacion/sports/src/Sports/PlatformBundle$ cd Entity/
:~/programacion/sports/src/Sports/PlatformBundle/Entity$ cd /
:/$
在最后提示的这一刻,是否有任何方法可以直接转到
programacion/sports/src/Sports/PlatformBundle/Entity
,因为它是我访问过的最后一条路径? 最佳答案
您可以使用以下快捷方式访问最后一个目录:cd -
例如:
kbrandt@alpine:~$ pwd
/home/kbrandt
kbrandt@alpine:~$ cd src
kbrandt@alpine:~/src$ cd -
/home/kbrandt
kbrandt@alpine:~$ cd -
/home/kbrandt/src
kbrandt@alpine:~/src$
另一种选择是使用
$OLDPWD
shell变量。关于linux - bash : is there any kind of buffer for last visited paths?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10398779/