From 9ee7db99159a0fd3d810c6be6cb2ec2d88e77231 Mon Sep 17 00:00:00 2001 From: Anton Alekseev Date: Tue, 16 Dec 2025 15:00:22 +0700 Subject: [PATCH] fix: Use a portable grep option Fixes #1713 --- quickget | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickget b/quickget index fcfd3b5..2fa3a60 100755 --- a/quickget +++ b/quickget @@ -918,7 +918,7 @@ function editions_parrotsec() { function releases_pclinuxos() { # shellcheck disable=SC2046 - echo $(web_pipe "https://ftp.fau.de/pclinuxos/pclinuxos/iso" | grep -oP 'pclinuxos64-\K[^\-]+-\K[0-9]+\.[0-9]+' | head -n 1) + echo $(web_pipe "https://ftp.fau.de/pclinuxos/pclinuxos/iso" | grep -o -E 'pclinuxos64-([a-z]+-)+[0-9]{4}\.[0-9]{2}\.iso'| grep -o -E '[0-9]{4}\.[0-9]{2}'| head -n 1) } function editions_pclinuxos() {