从 mac os 中的任何目录返回当前目录
我从我的一个项目中打开了一个终端。假设当时我在 /Users/test_user/Desktop/Project/test_project
中。
现在在同一个终端中,我将目录更改为 home(~)。现在我想返回到最初打开终端的目录。我有办法做到这一点吗?
I have a terminal open from one of my projects. Let's say at that time I was in /Users/test_user/Desktop/Project/test_project
.
Now in that same terminal, I changed the directory to home(~). Now I wanted to go back to the directory from which I opened the terminal initially. Is there a way for me to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 cd - 来返回到 OLDPWD 环境变量中的上一个目录。
如果您想转到另一个目录(不是您所在的上一个目录),有多种方法可以实现。一种方法是,您可以通过命令dirs -v 来查看目录堆栈。示例输出将如下所示:
然后您可以使用
cd ~$INDEX
,这里INDEX
是dirs -v
输出中显示的数字。因此,在上面的示例中,cd ~1
将 cd 到~/Downloads
中。另一个有趣的命令是 pushd 和 popd。
You can use
cd -
to go back to your previous directory which is insideOLDPWD
environment variable.If you want to go, to another directory (which is not the previous directory you are in), there are multiple ways to do it. One way is, you can see the directory stack by the command
dirs -v
. Sample output wil be like this:Then you can use
cd ~$INDEX
, here theINDEX
being the number shown in thedirs -v
output. Socd ~1
will cd into~/Downloads
in the above example.Another interesting commands to take a look at it are pushd and popd.