Skip to content

Instantly share code, notes, and snippets.

@igniteflow
Last active August 29, 2015 14:15
Show Gist options
  • Select an option

  • Save igniteflow/e9dae0949891001d081a to your computer and use it in GitHub Desktop.

Select an option

Save igniteflow/e9dae0949891001d081a to your computer and use it in GitHub Desktop.
Ack examples
# search all files ignoring those paths that contain regex_pattern (should be quoted)
ack -v -g regex_pattern | ack -x pattern
# practical Django usage to ignore migrations files
ack --python -v -g 'migrations' | ack -x foo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment