博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ack 比 grep 更快
阅读量:6282 次
发布时间:2019-06-22

本文共 1257 字,大约阅读时间需要 4 分钟。

hot3.png

ack is a search tool designed for code. It's built to be a replacement for grep with higher speed and more options.

Installation

To install the latest version, use homebrew.

$ brew install ack

Why use ack over grep

  • Faster
  • Skips unimportant files by default
  • It searches recursively by default
  • Customizable

Usage

$ ack [OPTION]... PATTERN [FILES OR DIRECTORIES]

Let's say you want to find all JavaScript files that are using the module pancakes in your project, with ack it's as easy as

$ ack --js pancakes

Or you may want to find all files that does not contain the word brew

$ ack -L brew

Customization

You can customize ack to behave the way you want it to, this configuration i s stored in /.ackrc.

For example, you can add a custom type to use as a flag when searching. The following configuration will allow you to only search in .md.mkd and .markdown files using the --markdown flag.

--type-set=markdown=.md,.mkd,.markdown

You can also tell ack to always sort and use colors in the result.

--sort-files--color

To see what configuration ack uses you can use the dump flag.

$ ack --dump

Alternatives to ack

There's  which describes itself as a

A code searching tool similar to ack, with a focus on speed.

转载于:https://my.oschina.net/u/923974/blog/1821148

你可能感兴趣的文章
吉林出差所见、所闻、所感
查看>>
RHEL7修改root用户密码
查看>>
mysqldump导出 timestamp类型数据 时区偏差8小时
查看>>
我的友情链接
查看>>
中小型企业如ERP选型四大标准
查看>>
笔记——quota磁盘配额
查看>>
索引表批量数据装载
查看>>
@Value("#{}")与@Value("${}")的区别
查看>>
Zabbix邮件报警设置方法
查看>>
20145328 《信息安全系统设计基础》第6周学习总结
查看>>
C语言随笔_类型声明
查看>>
AIX或LINUX,通过华为存储V3上添加对应LUN组,分配存储资源
查看>>
监控mysql主从的脚本
查看>>
用phpmyadimn来连接管理多个数据库
查看>>
解决RedHat 5 yum安装错误
查看>>
【jc2-1】 网络层IP编址
查看>>
诺基亚Lumia 800生产背后的故事——萨罗工厂[多图]
查看>>
AndroidUI优化工具——HierarchyViewer
查看>>
【一天一个shell命令】好管家--资源管理-top
查看>>
使用dashboard操作Openstack
查看>>