repo.or.cz
/
cmdllinux.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix: _brightness.sh - find brighness files with '*video*' path (multiple files)
[cmdllinux.git]
/
buildroot
/
_pkg
/
_+grep_files.sh
blob
a897eac895e4e1fbcb0588552a7da071f8a80f70
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 {}'