当 $CWD 包含空格或特殊字符时,使用 UNIX find 生成 TAGS 文件

发布于 2024-09-02 20:38:43 字数 289 浏览 9 评论 0原文

下面的 UNIX 单行代码会查找 CWD 下面的 Python 文件,并将它们添加到 Emacs 的 TAGS 文件中(或者我们可以对 Ctags 执行相同的操作)。

find . -name *.py -print | xargs etags

如果 CWD 的名称中包含空格或其他异常字符,则会中断此操作。不管 man find 怎么说,-print0-ls 似乎没有帮助。有没有一个巧妙的方法来解决这个问题?

The following UNIX one-liner looks for Python files below the CWD and adds them to a TAGS file for Emacs (or we could do the same with Ctags).

find . -name *.py -print | xargs etags

This breaks if the CWD has a space or other unusual character in its name. -print0 or -ls don't seem to help, in spite of what man find says. Is there a neat way around this?

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

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

发布评论

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

评论(1

哆啦不做梦 2024-09-09 20:38:43
find . -name '*.py' -print0 | xargs -0 etags

应该可以解决这个问题——您需要 xargs 的 -0 arg 来正确匹配 -print0

编辑

如果当前目录中有任何 .py 文件,您可能还需要 *.py 周围的引号。

find . -name '*.py' -print0 | xargs -0 etags

should do the trick -- you need the -0 arg to xargs to match the -print0 properly.

edit

you probably need the quotes around *.py as well, if there are any .py files in the current directory.

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