style: Normalize variable expansions in libs.deprecated/*

These files stay deprecated and out of the sourcing path for now, but
apply the same ${var} notation cleanup as the rest of the repo where
it's a pure notation fix. basedir.bash is left untouched: its bug is
a broken escape, not a notation issue, and it mirrors the one already
removed from _helpers.bash.
This commit is contained in:
2026-08-22 00:55:59 +02:00
parent 6738296ace
commit 6968a93343
5 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -1 +1 @@
grepp() { x=$1; shift; perl -00ne ' print if /'"$x"'/i ' "$*" ; }
grepp() { x=$1; shift; perl -00ne ' print if /'"${x}"'/i ' "$*" ; }