如何让ack支持更多的文件类型?

发布于 2024-09-25 23:25:07 字数 105 浏览 5 评论 0原文

在ack的主页中,列出了很多文件类型,但是没有aspx,是否可以让ack支持它?

in ack's home page, there lists a lot of file type, but without aspx, is it possible to let ack support it?

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

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

发布评论

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

评论(2

我是有多爱你 2024-10-02 23:25:07

在window上,在C:\Documents and Settings\yourname下添加.ackrc文件,其中的内容

--type-set=aspx=.aspx

可以将类型设置为多文件扩展名,以“,”分隔

--type-set=aspx=.aspx,.ascx

Note

ack 语法和行为已随版本发生显着变化2. 版本 2 中上述内容的等效项是:

--type-set=aspx:ext:aspx,ascx

其中语法为 --type-set TYPE:FILTER:FILTERARGSFILTER 可以是 中的任何一个ext、is、match、firstlinematch。您绝对应该阅读手册页以获取详细说明。

请参阅

On window,add .ackrc file under C:\Documents and Settings\yourname,with content

--type-set=aspx=.aspx

you can set a type to multi file extension,seperate by ","

--type-set=aspx=.aspx,.ascx

Note

ack syntax and behaviour has changed significantly with version 2. The equivalent of the above in version 2 would be:

--type-set=aspx:ext:aspx,ascx

Where the syntax is --type-set TYPE:FILTER:FILTERARGS and FILTER can be any of ext, is, match, firstlinematch. You should definitely read the man page for detailed explanation.

see

毁虫ゝ 2024-10-02 23:25:07
--type-add TYPE=.EXTENSION[,.EXT2[,...]]
                    Files with the given EXTENSION(s) are recognized as
                    being of (the existing) type TYPE

来自 http://betterthangrep.com/

您可以将其添加到主目录中的 .ackrc 中。

--type-add TYPE=.EXTENSION[,.EXT2[,...]]
                    Files with the given EXTENSION(s) are recognized as
                    being of (the existing) type TYPE

from http://betterthangrep.com/

You can add this to .ackrc in your homedirectory.

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