Package: unzip
Version: 5.51-10
The problem is, that the zipgrep script uses a pipe: unzip -p-L
"$zipfile" "$i" | egrep $opt "$pat" | sed "s|^|${i}:|"
and than save the exit code with r=$?, which is the exit code of sed
not of egrep. I had to replace r=$? with r=${PIPESTATUS[1]}, now it
works for me.See https://launchpad.net/bugs/135086 originally reporter by era. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

