Ubuntu 20.04.5 LTS still has zgrep version 1.10. Maybe `zgrep -P PATTERN file.gz` can be replaced by `zcat file.gz | perl -nle 'print if m{PATTERN}'`? More specifically `zcat file.gz | perl -nle "print if m{VALUES\s*\(.*\d:\d:...*'}"`
Ubuntu 20.04.5 LTS still has zgrep version 1.10.
Maybe
zgrep -P PATTERN file.gzcan be replaced byzcat file.gz | perl -nle 'print if m{PATTERN}'?More specifically
zcat file.gz | perl -nle "print if m{VALUES\s*\(.*\d:\d:...*'}"