Does anyone know how to make a grep in files with line lengths of more than
2K?
If you perform this command:
find . -type f -print | xargs grep -i what-ever
AIX will fail several times with this error:
grep: 0652-226 Maximum line length of 2048 exceeded.
Linux and Solaris doesn't have this limitation, so I was wondering why AIX
does and what can be done about it. Any ideas?
Thanks
Bent