update buildroot - work in progress development
[cmdllinux.git] / buildroot / _pkg_tmp / _+grep_files.sh
bloba897eac895e4e1fbcb0588552a7da071f8a80f70
1 #while ... faster than xargs -i
2 time ls */depends | while read line; do grep -q "^zlib$" $line && echo $line; done
3 ##time ls */depends 2> /dev/null | xargs -r -i sh -c 'grep -q "^zlib$" {} && echo {}'