grep is so annoying when it says "argument list too long". This happens quite often when searching our large directories.
grep -i srchparam *1f* <---- too many arguments
grep -i srchparam *1fL* <---- too many arguments
grep -i srchparam *1fLA* <---- too many arguments
grep -i srchparam *1fLAA* <---- too many arguments
grep -i srchparam *1fLAA0* <---you have to be this specific for the command to work which could take forever depending on the different filename combinations you have to search on
I thought I'd ask if there was a grep switch that would get me around this limitation.
Please & Thank you!
grep -i srchparam *1f* <---- too many arguments
grep -i srchparam *1fL* <---- too many arguments
grep -i srchparam *1fLA* <---- too many arguments
grep -i srchparam *1fLAA* <---- too many arguments
grep -i srchparam *1fLAA0* <---you have to be this specific for the command to work which could take forever depending on the different filename combinations you have to search on
I thought I'd ask if there was a grep switch that would get me around this limitation.
Please & Thank you!