Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
bee-query: find now packages with special characters
But now extended regular expressions didn't work anymore
  • Loading branch information
david committed Sep 21, 2021
1 parent 7ca455e commit 44ea064
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bee-query.sh.in
Expand Up @@ -85,7 +85,7 @@ function get_pkgs() {

for pkg in $(bee-list --installed) ; do

if egrep -q "file=.*${f}" "${BEE_METADIR}/${pkg}/CONTENT" ; then
if grep -q "file=.*${f}" "${BEE_METADIR}/${pkg}/CONTENT" ; then
echo ${pkg}
while read line ; do
eval $(${BEESEP} "${line}")
Expand Down

0 comments on commit 44ea064

Please sign in to comment.