summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFranck Cuny <franck.cuny@gmail.com>2013-10-13 09:19:43 -0700
committerFranck Cuny <franck.cuny@gmail.com>2013-10-13 09:19:43 -0700
commit33035007ee924df9059a2cfdd1ba6bf4810aeaf2 (patch)
tree5488d4506161cb4d6b0ad6740d34876ecd7ccf0e
parentUpdate project page with link to GDrive. (diff)
downloadlumberjaph-33035007ee924df9059a2cfdd1ba6bf4810aeaf2.tar.gz
Convert post to md.
Diffstat (limited to '')
-rw-r--r--_posts/2008-06-24-ack.md24
-rw-r--r--_posts/2008-06-24-ack.textile23
2 files changed, 24 insertions, 23 deletions
diff --git a/_posts/2008-06-24-ack.md b/_posts/2008-06-24-ack.md
new file mode 100644
index 0000000..96e8388
--- /dev/null
+++ b/_posts/2008-06-24-ack.md
@@ -0,0 +1,24 @@
+---
+title: Ack
+layout: post
+summary: In which I share my settings for ack..
+---
+
+*"Ack is designed as a replacement for 99% of the uses of grep."*
+
+[Ack](https://metacpan.org/module/App::Ack) is a really nice tool for searching your source code. It's faster than grep because he already knows what you want : searching your sources files :)
+
+By default it will not search in SCM files (**.svn**, **.cvs**, ...), backups files (**source.pl~**, **source.pl.bak**, ...). You can specify what kind of files you want (`--perl`, `--cc`, ...), make it match some regex with `--match`, ...
+
+And you can set some defaults configuration in a .ackrc file ! Mine looks like this:
+
+```
+--sort-files
+--color
+--context=1
+--follow
+```
+
+Check also: [vim with ack integration](http://use.perl.org/~Ovid/journal/36430?from=rss).
+
+Oh, and it's the only program with `--thpppt` option!
diff --git a/_posts/2008-06-24-ack.textile b/_posts/2008-06-24-ack.textile
deleted file mode 100644
index a410984..0000000
--- a/_posts/2008-06-24-ack.textile
+++ /dev/null
@@ -1,23 +0,0 @@
----
-category: app
-title: Ack
-layout: post
----
-
-*"Ack is designed as a replacement for 99% of the uses of grep."*
-
-"Ack":http://search.cpan.org/~petdance/ack-1.84/ack is a real nice tool for searching your source code. It's faster than grep because he already knows what you want : searching sources files :)
-
-By default it will not search in SCM files (.svn, .cvs, ...), backups files (source.pl~, source.pl.bak, ...). You can specify what kind of files you want (--perl --cc, ...), make it match some regex with --match, ...
-
-And you can set some defaults configuration in a .ackrc file ! Mine looks like this:
-
-bc. --sort-files
---color
---context=1
---follow
-
-
-p. Check also: "vim with ack integration":http://use.perl.org/~Ovid/journal/36430?from=rss.
-
-Oh, and it's the only program with --thpppt option.