summaryrefslogtreecommitdiffhomepage
path: root/subr.rtl/rtl.subr
diff options
context:
space:
mode:
authorLucía Andrea Illanes Albornoz <lucia@luciaillanes.de>2023-03-26 15:22:05 +0200
committerLucía Andrea Illanes Albornoz <lucia@luciaillanes.de>2023-03-26 15:35:28 +0200
commit6a630d65522105b25363ab4ac10248fc13b1c783 (patch)
treefb7b0cc06f9a64a5a20bf18b8d31244d19a933b9 /subr.rtl/rtl.subr
parentd677b4ef2b668e64f85bcb55c96c7c8519ef9279 (diff)
downloadmidipix_build-6a630d65522105b25363ab4ac10248fc13b1c783.tar.bz2
midipix_build-6a630d65522105b25363ab4ac10248fc13b1c783.tar.xz
Print group file pathname in ./pkgtool.sh -i output.
Diffstat (limited to 'subr.rtl/rtl.subr')
-rw-r--r--subr.rtl/rtl.subr1
1 files changed, 0 insertions, 1 deletions
diff --git a/subr.rtl/rtl.subr b/subr.rtl/rtl.subr
index 50b7d188..1c51054a 100644
--- a/subr.rtl/rtl.subr
+++ b/subr.rtl/rtl.subr
@@ -13,7 +13,6 @@ RTL_NL="
rtl_date() { local _rdate="${1#\$}"; shift; eval ${_rdate}=\"\$\(command date \"+\${1:-\${DEFAULT_TIMESTAMP_FMT:-\"%Y/%m/%d %H:%M:%S\"}}\"\)\"; };
rtl_set_IFS_nl() { IFS="${RTL_NL}"; };
-rtl_set_var_unsafe() { [ "${2:+1}" = 1 ] && eval ${1}=\"${2}\" || return 0; };
rtl_test_cmd() { command -v "${1}" >/dev/null; };
rtl_uniq() { if [ "${#}" -gt 0 ]; then printf "%s" "${*}" | sed 's/ /\n/g' | awk '!x[$0]++' | paste -s -d" "; fi; };
rtl_uniq2() { eval set -- \${${1#\$}}; if [ "${#}" -gt 0 ]; then printf "%s" "${*}" | sed 's/ /\n/g' | awk '!x[$0]++' | paste -s -d" "; fi; };