grep 别名搜索命令不起作用

发布于 2024-12-10 07:21:26 字数 184 浏览 0 评论 0原文

我正在尝试创建一个别名,简称为文件搜索(fs)。这需要一个参数(搜索词)。然后,它使用 grep 在目录树中搜索该目录。

示例:

fs 'function my_function()'

我做错了什么?

alias fs='grep -R "$1" .'

I am trying to make an alias called File Search (fs) for short. That takes one argument (search term). It then searches down the directory tree for that using grep.

Example:

fs 'function my_function()'

What am I doing wrong?

alias fs='grep -R "$1" .'

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

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

发布评论

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

评论(1

尝蛊 2024-12-17 07:21:26

您尝试的将搜索当前目录本身,而不是其中的文件,当然也不是其子目录中的文件。你想要这样的东西(凭记忆,我现在不在 Unix 机器上):

find . -type f | xargs grep "$1"

What you tried would search the current directory itself, not the files in it, and certainly not the files in its subdirectories. You want something like this (from memory, I'm not at a Unix machine right now):

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