Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在安装 RVM 并添加了该行
[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm"
进入我的 .bashrc 文件。
现在 RVM 工作正常,但我有下一条消息
find: cannot stat current directory: Permission denied
在每个 RVM 命令之后。我该如何解决?
您的问题中没有足够的信息来给您答案。find 的当前目录不可读。为什么?您需要添加
set -x
到脚本,然后您将看到 find 尝试在哪个目录中运行。比一个人可以说一个人必须做的更进一步。