> @/etc/init.d$ grep -R -e '\[ ' -e 'test ' * | grep -e ' -o ' -e ' -a ' | wc -l > 14 > @/etc/init.d$ grep -R -e '\[ ' -e 'test ' * | wc -l > 567 > @/etc/init.d$
For those pedantic regex lawyers, here is more precision in measurements: @/etc/init.d$ grep -R -e ' \[ [^]]*\ ]' -e ' test ' -e '^\[ ' -e '^test ' * | \ wc -l 452 @/etc/init.d$ grep -R -e ' \[ [^]]*\ ]' -e ' test ' -e '^\[ ' -e '^test ' * | \ grep -e ' -o ' -e ' -a ' | wc -l 12 [EMAIL PROTECTED]:/etc/init.d$ Difference is more than 37 times. ____ - To unsubscribe from this list: send the line "unsubscribe dash" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html
