When I type this at shell prompt:
grep -r "ambiguously" .
I get the error:
grep: line too long.
Basically the current directory is a log directory and I am trying to locate the sql error ‘Column ambiguously defined’ in all the log files.
But why do I get the error? The files are very huge in size, is that the main reason?
You should try
The command line limitation can be found on linux with
On *BSD with
See http://www.cyberciti.biz/faq/argument-list-too-long-error-solution/ to go further.