Unix 中用于更改目录的别名

发布于 2024-12-27 23:50:48 字数 295 浏览 1 评论 0原文

大家好,我对 Unix 还很陌生,请原谅我!

我有以下 .profile 文件,用于分配别名!

  alias here='export THERE_PWD=`echo $PWD`'
  alias there='cd $THERE_PWD'

希望你能看到我正在努力做的事情。使用“here”命令,我可以指定在另一个目录中工作后最终想要将目录更改回的位置(通过键入“there”)。

然而,这似乎不起作用!我哪里出错了? 从长远来看,如果我让它发挥作用,这将为我节省很多时间!

Hi everyone I am fairly new to Unix so forgive me!

I have the following .profile file that I use to assign aliases!

  alias here='export THERE_PWD=`echo $PWD`'
  alias there='cd $THERE_PWD'

Hopefully you can see what I am trying to do. Using the 'here' command I can specify where I eventually want to change directory back to after working in another directory (by typing 'there').

However, this doesn't seem to work! Where have I gone wrong?
This will save me a lot of time in the long run if I get it working!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

蓝咒 2025-01-03 23:50:48

您可以通过 pushdpopd 使用内置的目录堆栈:
pushd new_dir 将当前目录压入堆栈并更改为 new_dir
popd 返回您原来的位置。

You can just use the built in dir stack via pushd and popd:
pushd new_dir pushes the current dir onto the stack and changes to new_dir
popd returns to where you came from.

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