从 mac os 中的任何目录返回当前目录

发布于 2025-01-11 08:04:34 字数 154 浏览 0 评论 0原文

我从我的一个项目中打开了一个终端。假设当时我在 /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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

执手闯天涯 2025-01-18 08:04:34

您可以使用 cd - 来返回到 OLDPWD 环境变量中的上一个目录。

如果您想转到另一个目录(不是您所在的上一个目录),有多种方法可以实现。一种方法是,您可以通过命令dirs -v 来查看目录堆栈。示例输出将如下所示:

0   ~/workspace/stack/c
1   ~/Downloads
2   ~

然后您可以使用 cd ~$INDEX,这里 INDEXdirs -v 输出中显示的数字。因此,在上面的示例中, cd ~1 将 cd 到 ~/Downloads 中。

另一个有趣的命令是 pushdpopd

You can use cd - to go back to your previous directory which is inside OLDPWD 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:

0   ~/workspace/stack/c
1   ~/Downloads
2   ~

Then you can use cd ~$INDEX, here the INDEX being the number shown in the dirs -v output. So cd ~1 will cd into ~/Downloads in the above example.

Another interesting commands to take a look at it are pushd and popd.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文