X-Git-Url: https://git.madduck.net/etc/zsh.git/blobdiff_plain/e7aef48f33e934106d1a50201d9f098f9886d7ec..308358cae2dd574c92560b7b20cc51394ddb9708:/.zsh/util diff --git a/.zsh/util b/.zsh/util index ce6f9fc..9b86536 100644 --- a/.zsh/util +++ b/.zsh/util @@ -2,14 +2,52 @@ # # Miscellaneous utility functions # -# Copyright © 1994–2008 martin f. krafft +# Copyright © 1994–2017 martin f. krafft # Released under the terms of the Artistic Licence 2.0 # -# Source repository: git://git.madduck.net/etc/zsh.git +# Source repository: http://git.madduck.net/v/etc/zsh.git # is_root() { test ${EUID:?} -eq 0 } +array_prepend() { + local arrayname="$1"; shift + local i + for i; do + eval "typeset -ga $arrayname; $arrayname=(\$i \${$arrayname[@]/\$i})" + done +} + +array_append() { + local arrayname="$1"; shift + local i + for i; do + eval "typeset -ga $arrayname; $arrayname=(\${$arrayname[@]/\$i} \$i)" + done +} + +function trace() { ( eval "set -x; $@"; ) } + +function run_at_most_every() { + local timespec= + case "$1" in + ((#b)([0-9]##)([smhd])) timespec="${match[2]}-${match[1]}";; + (*) + zerror "missing timespec: $@" + return + esac + shift + + local sentinel_dir="${XDG_RUNTIME_DIR:-${TMPDIR:-/tmp}}/run_at_most_once_per" + mkdir --parent "${sentinel_dir}" + local sentinel="${sentinel_dir}/${*//[^[:alnum:]]##/_}_${timespec}" + if test -z ${sentinel}(#qNm${timespec}); then + touch "${sentinel}" + $@ + return $? + fi +} + # vim:ft=zsh