Skip to content

Instantly share code, notes, and snippets.

@tony612
Created January 21, 2014 03:46
Show Gist options
  • Select an option

  • Save tony612/8534170 to your computer and use it in GitHub Desktop.

Select an option

Save tony612/8534170 to your computer and use it in GitHub Desktop.
Useful ag options
ag "^foo(bar)?"
ag -i "foo bar" # ignore case
ag --ignore "*.min.*" foo # ignore files/directory matching the pattern.
ag -G '.*.css' foo # Limit files to which match the pattern.
ag -l # Only print filenames that contain matches
# search and replace
ag --ignore "*.css" --ignore "*.min.js" -l 'halfings' | xargs perl -pi -E 's/halfings/halflings/g'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment