Created
February 10, 2020 01:14
-
-
Save lukecarbis/77dc904eef7d1e47a7426fd613fd7fac to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ack is a tool like grep, designed for programmers with large trees of heterogeneous source code | |
# To install ack, see http://betterthangrep.com/ | |
# To use ack, launch terminal (mac osx) and type 'ack <some_keywords>' | |
# ack will search all files in the current directory & sub-directories | |
# Always color, even if piping to a another program | |
--color | |
# Ignore some directories | |
--ignore-dir=bin/ | |
--ignore-dir=node_modules/ | |
--ignore-dir=vendor/ | |
# Ignore minified files | |
--ignore-file=firstlinematch:/.{200}/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment