Huge copy paste fail!

> Also, just for kicks I ran a comparison:
>
> $ time find / | grep 'bin' > /dev/null
> real    0m8.122s
> user    0m3.101s
> sys     0m2.519s
>
> $ time find / -regex 'bin' | grep
> real    0m18.795s
> user    0m3.394s
> sys     0m3.401s


That should have been

$ time find / -regexp 'bin' > /dev/null

for the second example


-- 
http://apgwoz.com

Reply via email to