grep 别名搜索命令不起作用
我正在尝试创建一个别名,简称为文件搜索(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您尝试的将搜索当前目录本身,而不是其中的文件,当然也不是其子目录中的文件。你想要这样的东西(凭记忆,我现在不在 Unix 机器上):
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):