用于搜索字符串的 bash 别名

用于搜索字符串的 bash 别名

我正在添加一个别名来搜索文件中的字符串,该字符串会指向我一个片段。

alias snippets="find /oneDrive/Work/Snippets -type f -exec grep -Hi $1 '{}' + "

并调用为

snippets "target"

并得到错误为

find: target: unknown primary or operator

非常感谢任何帮助。

相关内容