无法在 Bash 4 中启用 globstar

发布于 2024-07-18 06:06:17 字数 256 浏览 8 评论 0原文

我未成功地将以下内容添加到我的 .bashrc

shopt -s globstar

我正在尝试通过

ls **/*.c

进行比较来测试该命令的实际运行情况

ls */*/*.c

将其与How can you enable globstar in Bash 4?

I put the following unsuccessfully to my .bashrc

shopt -s globstar

I am trying to test the command in action by

ls **/*.c

and by comparing it to

ls */*/*.c

How can you enable globstar in Bash 4?

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

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

发布评论

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

评论(1

煞人兵器 2024-07-25 06:06:17

唔。 shopt -s globstar 应该可以工作。

要进行调试,请确保您正在运行 Bash 4:

$SHELL --version

然后检查 globstar 的设置:

shopt globstar

如果未设置,请尝试手动设置:

shopt -s globstar

现在看看是否有效。 如果确实如此,您可能需要调查一下 .bashrc 无法工作的原因。 您是否记得在编辑 .bashrc 后重新启动 shell,或者使用 加载它。 .bashrc?

Hmm. shopt -s globstar should work.

To debug, make sure you are running Bash 4:

$SHELL --version

Then check the setting of globstar:

shopt globstar

If it is unset, try setting it manually:

shopt -s globstar

Now see if that works. If it does, you might want to look into why your .bashrc isn't working. Did you remember to restart you shell after editing your .bashrc, or load it with . .bashrc?

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