From: KlzXS <klzx+github@klzx.cf>
Date: Fri, 26 Nov 2021 09:33:11 +0000 (+0100)
Subject: Remove -E from sed in plugins
X-Git-Tag: v4.5~42^2~14^2
X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=8f2e17303e0ea85c5daa3fb2df9f26ac44d31e13;p=nnn.git

Remove -E from sed in plugins
---

diff --git a/plugins/dups b/plugins/dups
index a3fbbc69..27c1807f 100755
--- a/plugins/dups
+++ b/plugins/dups
@@ -28,17 +28,17 @@ printf "\
 " > "$tmpfile"
 
 # shellcheck disable=SC2016
-find . -size +0 -type f -printf "%${size_digits}s %p\n" | sort -rn | uniq -w"${size_digits}" -D | sed -E '
-s/^ {,12}([0-9]{,12}) (.*)$/printf "%s %s\\n" "$(md5sum "\2")" "d\1"/
-' | tr '\n' '\0' | xargs -0 -n1 sh -c | sort | { uniq -w32 --all-repeated=separate; echo; } | sed -nE '
+find . -size +0 -type f -printf "%${size_digits}s %p\n" | sort -rn | uniq -w"${size_digits}" -D | sed -e '
+s/^ \{0,12\}\([0-9]\{0,12\}\) \(.*\)$/printf "%s %s\\n" "$(md5sum "\2")" "d\1"/
+' | tr '\n' '\0' | xargs -0 -n1 sh -c | sort | { uniq -w32 --all-repeated=separate; echo; } | sed -ne '
 h
-s/^(.{32}).* d([0-9]*)$/## md5sum: \1 size: \2 bytes/p
+s/^\(.\{32\}\).* d\([0-9]*\)$/## md5sum: \1 size: \2 bytes/p
 g
 
 :loop
 N
 /.*\n$/!b loop
-p' | sed -E 's/^.{32}  (.*) d[0-9]*$/\1/' >> "$tmpfile"
+p' | sed -e 's/^.\{32\}  \(.*\) d[0-9]*$/\1/' >> "$tmpfile"
 
 "$EDITOR" "$tmpfile"
 
@@ -46,7 +46,7 @@ printf "Remove commented files? (yes/no) [default=n]: "
 read -r commented
 
 if [ "$commented" = "y" ]; then
-	sedcmd="/^(##|[^#]).*/d; /^$/d; s/^# *(.*)$/\1/"
+	sedcmd="/^##.*/d; /^[^#].*/d; /^$/d; s/^# *\(.*\)$/\1/"
 else
 	printf "Press any key to exit"
 	read -r _
@@ -58,10 +58,10 @@ read -r force
 
 if [ "$force" = "f" ]; then
 	#shellcheck disable=SC2016
-	sed -E "$sedcmd" "$tmpfile" | tr '\n' '\0' | xargs -0 -r sh -c 'rm -f "$0" "$@" </dev/tty'
+	sed -e "$sedcmd" "$tmpfile" | tr '\n' '\0' | xargs -0 -r sh -c 'rm -f "$0" "$@" </dev/tty'
 else
 	#shellcheck disable=SC2016
-	sed -E "$sedcmd" "$tmpfile" | tr '\n' '\0' | xargs -0 -r sh -c 'rm -i "$0" "$@" </dev/tty'
+	sed -e "$sedcmd" "$tmpfile" | tr '\n' '\0' | xargs -0 -r sh -c 'rm -i "$0" "$@" </dev/tty'
 fi
 
 rm "$tmpfile"
diff --git a/plugins/xdgdefault b/plugins/xdgdefault
index 7d49c2bf..a69e32b3 100755
--- a/plugins/xdgdefault
+++ b/plugins/xdgdefault
@@ -42,7 +42,7 @@ done
 
 app=$(find "$@" -iname '*.desktop' -exec grep '^Name=' {} + \
     | sort -u -t ':' -k 1,1 \
-    | sed -E 's;.+/(.+desktop):Name=(.+);\2:\1;' \
+    | sed -e 's;..*/\(..*desktop\):Name=\(..*\);\2:\1;' \
     | sort -t ':' -k 1,1 \
     | column -t -s ':' -o "$(printf '\t')" \
     | $menu \