Tagged Questions

ack is a tool like grep, designed for programmers with large trees of heterogeneous source code.

learn more… | top users | synonyms

25
votes
5answers
3k views

How can I install and use ack library on Windows?

I have never used Perl, but I am really impressed by the ack, which I would like to use for source code searching, etc. Can anyone guide me of how to make use of this excellent library on Windows?
15
votes
4answers
1k views

ack misses results (vs. grep)

I'm sure I'm misunderstanding something about ack's file/directory ignore defaults, but perhaps somebody could shed some light on this for me: mbuck$ grep logout -R app/views/ Binary file ...
10
votes
4answers
12k views

How do I run programs with Strawberry Perl?

A coworker is trying to use ack (a Perl program) on his Windows machine, having tried it under Linux and decided he definitely wants to use it. He managed to get Strawberry Perl installed on his ...
6
votes
2answers
760 views

How to do search & replace with ack in vim?

I am using the Ack plugin in vim, which helps me to quickly search for strings in my project. However, sometimes I want to replace all or some occurrences of the found strings. You can do some kind of ...
5
votes
2answers
278 views

Java Sockets: Socket.close() terminates connection different on Windows and Mac?

Situation is as follows: I have a Java Application, that communicates over TCP to a Microcontroller with TCP Stack on it. The Stack on the Controller works fine, I can sort this out. Problem is: When ...
5
votes
3answers
96 views

Add SCons files to ack searches

I love the code search utility ack. It is smart enough to look through Makefiles, but doesn't know about the SConstruct and SConscript files that scons uses. How do I add those to the files that ack ...
5
votes
1answer
174 views

How to use named regex groups in ack output?

Suppose I have a foo.txt file with the following content: [2010-11-13 12:00:02,656] [2010-11-13 12:00:02,701] [2010-11-13 12:00:02,902] When I ack for the date portion with the following, it works: ...
4
votes
1answer
139 views

How do I get Ack to ignore jQuery files?

I'm using Vim + Ack.Vim and am flummoxed on how to ignore hits within Jquery files. I've got an .ackrc file defined (see below), but I'm stabbing in the dark. ...
4
votes
1answer
89 views

Ignoring sub-directories in .ackrc

I'd like to get my .ackrc configured so ack doesn't look inside my test/coverage folder. So far I've ended up with this : --ignore-dir=coverage This works, but it doesn't feel quite as right as : ...
4
votes
3answers
219 views

What is generally faster, grepping through files or running a SQL LIKE %x% query through blobs?

Say I'm designing a tool that would save code snippets either in a PostgreSQL/MySQL database or on the file system. I want to search through these snippets. Using a search engine like Sphinx doesn't ...
4
votes
2answers
165 views

Getting ack to search through .htaccess or other dotfiles

Is there any way to get ack to search through a file whose filename starts with a . (e.g. .htaccess), without resorting to the --all or --unrestricted options? I've tried adding the following to my ...
4
votes
2answers
413 views

How to let ack support more filetypes?

in ack's home page, there lists a lot of file type, but without aspx, is it possible to let ack support it?
4
votes
1answer
675 views

ack does not work when run from “grep-find” in Emacs on Windows

I'm trying to use ack-grep as a replacement for grep + find in Emacs on Windows, but ack-grep exits immediately (successfully) without printing any matches. I've tried just about every conceivable ...
3
votes
1answer
43 views

ack: Exclude specific directories from search via regex

How do I ignore specific directories via RegEx with ack? I can use the --ignore-dir option, but this does not let me specify a RegEx. I want to be able to ignore any directory, which has the words ...
3
votes
2answers
34 views

Ack & negative lookahead giving errors

I have a problem with using ack-grep with a negative look ahead. I am running this command: ack-grep "paypal_responded(?!_at)" but I am getting the error: bash: !_at: event not found I have ...
3
votes
1answer
104 views

Is there a way to determine whether the data has been received in a TCP Java Socket

does any of you know if there is a way to tell whether or not the data sent through a Java TCP Socket has been received? The TCP protocol should store the last acked byte somewhere, but I don't know ...
3
votes
1answer
206 views

Get ack to exclude files with type “.min.js”

I minify javascript files on the fly and produce a .min.js file beside the existing file. This is a problem though when using ack as it treats these as .js files and searches them littering my ...
3
votes
1answer
479 views

Sending ACK in socket C#

I need to send files to a server through Socket. The server will send ACK for every message i send. If i din't receive the ACK within 30sec i'll have to send the request again. My question is, how ...
3
votes
1answer
177 views

How to make ack include .conf files?

How to configure ack (sometimes distributed as ack-grep) to always include .conf files into search?
3
votes
3answers
411 views

ack-grep: please help with chars escaping

My goal is to find all "<?=" occurrences with ack. How can I do that? ack "<?=" Doesn't work. Please tell me how can I fix escaping here?
3
votes
1answer
689 views

ack: Excluding only one directory but keeping all others with the same name

My folder structure looks like this: /app /app/data ... /app/secondary /app/secondary/data I want to recursively search /app, including /app/data. I do not want to search /app/secondary/data ...
3
votes
3answers
465 views

Why do I get extra, unexpected results with my ack regex?

I'm finally learning regexps and training with ack. I believe this uses Perl regexp. I want to match all lines where the first non-blank characters are if (<word> !, with any number of spaces ...
2
votes
1answer
43 views

grep/ack -o with characters of context (not lines)

I'm trying to find a way to grep -o "somepattern" which gives me something like html/file.js 2:somepattern 5:somepattern but what would be really nice is to have a few characters (maybe 20) ...
2
votes
1answer
150 views

Ignoring a directory using ack's .ackrc

I'm not sure what it's for, but the code I'm working on has a bunch of folders called "save.d," it looks like they're used for some sort of version control (we also have .svn folders). How can I ...
2
votes
3answers
100 views

How to search for '<' in files using ack in powershell in windows?

I cannot figure out how to escape the '<' character, and I am confused by the 'The system cannot find the file specified' error. Can anyone help? I am using ack in powershell in Windows XP. The ...
2
votes
1answer
238 views

How do I exclude files and directories from a project in vim (using janus)?

I'm moving from Textmate to vim (with janus) and want to exclude some directories from Ack in particular, and also NERDTree. The reason I want to do this is that Ack is useless (takes minutes to run, ...
2
votes
1answer
184 views

Multiple patterns with ack-grep?

Is it possible (and how) to chain patterns with ack (ack-grep on some distributions of Linux) like I'm used to with grep? e.g. grep "foo" somefile.c | grep -v "bar" ...to match all lines with ...
2
votes
2answers
445 views

Why is ACK = 1 and not 2 in first TCP request after connection establishment?

Hey, i'm confusted about the ACK and SEQ numbers in TCP packets right after the 3-way-handshake. I thought the ACK number is the next expected SEQ number. So when I analyse a TCP connection in ...
2
votes
2answers
216 views

Eclipse: Making Eclipse's “search in project” less unhelpful?

Eclipse's "find in project" took is, as far as I can tell, blindingly stupid. Let me illustrate. This is what I get when I run a "find in project": And when I click to see what's in that "closed" ...
2
votes
2answers
1k views

how to truncate long matching lines returned by grep or ack

I want to run ack or grep on html files that often have very long lines. I don't want to see very long lines that wrap repeatedly. But I do want to see just that portion of a long line that surrounds ...
2
votes
3answers
348 views

Where should I put the ack configuration file on Windows?

I'm using ack (the grep replacement) on Windows XP under Strawberry Perl. Where should the .ackrc config file be placed, since ~/.ackrc is not reasonable on Windows?
2
votes
2answers
215 views

How can I find strings that have mixed cased with Perl?

I'm trying to filter thousands of files, looking for those which contain string constants with mixed case. Such strings can be embedded in whitespace, but may not contain whitespace themselves. So the ...
1
vote
2answers
85 views

Search in all directories

I can't find out how to search in Vim in all directories with: grep ack findstring vimgrep p.e. search "search-item" in all .txt files in c:\ and d:\ (including sub directories) Can anyone help ...
1
vote
1answer
45 views

Ack: permission denied outputs along with results

when I ack something I often get output like this: Ack: tmp/nonces/4e8c9698-https-www.google.com-kkEIoIiSEjUBRD.lRR_tT9V6ccE-mRPtTixYnWzzGcPpbIwx9scpDnE: Permission denied Ack: ...
1
vote
2answers
36 views

How do I search for the string '--branch' using ack?

In ack you can use the -Q option to escape all the characters in your search string, but that doesn't seem to work if the search string you are using looks like an option for ack. I am trying to ...
1
vote
1answer
65 views

Using ACK as a Filter

I've been using ACK for searching my code base, and it's a wonderful tool. However, it has (in my opinion) one important limitation - it does not allow multi-line matching of regular expressions. To ...
1
vote
2answers
97 views

How to use ack with M-x find-grep?

Leaving question here for reference. The Lord alone knows why, but whereas once upon a time this didn't work for me, prompting me to ask this question, today it does. Typical bloody emacs. Also ...
1
vote
1answer
48 views

Can ack find files based on filename only?

Using ack (sometimes packaged as ack-grep) I know that I can find paths that contain a specific string by doing: ack -g somestring But what if I only want files which have "somestring" in their ...
1
vote
1answer
131 views

Ack.vim “No such file or directory” error on windows

I had Ack setup and working fine with Vim on my windows XP machine not long ago. Not sure what I did recently, but now it doesn't work. Here is an example of my problem in Vim: :Ack searchterm ...
1
vote
1answer
65 views

Ack with regex - Confusion with simple queries

I am trying to use ack-is-better-than-grep (ack) with regular expressions to find lines and snippets in my code repository. My understanding is that ack uses Perl-derivative regular expressions, is ...
1
vote
2answers
154 views

Keep messages from ACKing on get() using pecl-amqp

I'm attempting to use pecl-amqp for a project of mine. I'm having difficulties though with the ACK process. I need to manually ACK each message I receive off a queue, but the messages appear to be ...
1
vote
2answers
40 views

what is the reason to send an ack message by client before server window is over?

the situation is this : the client starting connection establishment and requesting a file . the server start to send the file but in the middle of the server sending window the client ...
1
vote
3answers
193 views

How can I escape the % and # characters in a Vim command?

I'm using Ack (https://github.com/mileszs/ack.vim) with the --literal flag to search through projects in Vim. I noticed that whenever I search for a string with the % or # characters, the search ...
1
vote
2answers
191 views

Include specific file names in ack

I would like to include files with a specific name -- not an extension -- in my ack search. Is this possible with ack? If I use the -G option, this would exclude all other file types. (So I can't put ...
1
vote
2answers
148 views

Diagnosing a slow grep or ack search through a complex directory (code, files, php scripts, etc) for faster repeated use

I'm using ack (sometimes distributed as ack-grep) to search through a complex directory of code, images, who knows what else, and it's reacting pretty slowly. How can I diagnose what it is searching ...
1
vote
2answers
199 views

Is it possible to add a -G option to ~/.ackrc

When I do ack -G "^.*$" "foo" I get results... but when I put -G "^.*$" or -G="^.*$" or -G "^.*$" in my `~/.ackrc/ I get no results... Does anyone know if -G can be used in ackrc?
1
vote
2answers
428 views

Escaping a bracket in grep/ack

I want to look for the string "methodname(", but I am unable to escape the "(". How can I get grep methodname( * or ack-grep methodname( * to work?
1
vote
2answers
645 views

How can I get ack to ignore *.orig files?

I put this in my .ackrc: --type-set=DUMB=*.orig --noDUMB ... but I'm still seeing files like main.py.orig in my ack results. I tried doing --type-set=DUMB=*.*.orig too, but that didn't work either. ...
1
vote
2answers
633 views

Mirth Changing Default ACK Field Value

I am using Mirth with a LLP listener receiving HL7v2 message. The customer expects an ACK message from us and so we checked the "Send ACK" radio button. The only problem is that in the default ACK it ...
1
vote
1answer
165 views

Ack in shell mode in Emacs for Windows shows no output

After installing ack on Windows 7 64-bit (e.g. using StrawberryPerl), I can run ack from a cmd terminal in Windows. However, if I try using ack in Emacs in Shell mode (i.e. in a M-x shell buffer), I ...

1 2