gpt4 book ai didi

bash - 在 Bash 注销时保存最后一个工作目录

转载 作者:行者123 更新时间:2023-11-29 08:49:43 25 4
gpt4 key购买 nike

在 bash 中执行“退出”时是否可以保存最后一个工作目录。因此,下次您登录时,它将位于您上次注销时所在的目录。

最佳答案

将 ~./.bash_logout 中的最后一个工作目录保存到隐藏文件中:

pwd > ~/.lastdirectory

用 ~/.bashrc 读取这个文件

[ -s ~/.lastdirectory ] && cd `cat ~/.lastdirectory`

关于bash - 在 Bash 注销时保存最后一个工作目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/767040/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com