]>
git.madduck.net Git - etc/zsh.git/blobdiff - .zsh/util
madduck's git repository
Every one of the projects in this repository is available at the canonical
URL git://git.madduck.net/madduck/pub/<projectpath> — see
each project's metadata for the exact URL.
All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@ git. madduck. net .
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
SSH access, as well as push access can be individually
arranged .
If you use my repositories frequently, consider adding the following
snippet to ~/.gitconfig and using the third clone URL listed for each
project:
[url "git://git.madduck.net/madduck/"]
insteadOf = madduck:
local arrayname="$1"; shift
local i
for i; do
local arrayname="$1"; shift
local i
for i; do
- eval "$arrayname=(\$i \${$arrayname[@]/\$i})"
+ eval "typeset -ga $arrayname; $arrayname=(\$i \${$arrayname[@]/\$i})"
local arrayname="$1"; shift
local i
for i; do
local arrayname="$1"; shift
local i
for i; do
- eval "$arrayname=(\${$arrayname[@]/\$i} \$i)"
+ eval "typeset -ga $arrayname; $arrayname=(\${$arrayname[@]/\$i} \$i)"
done
}
function trace() { ( eval "set -x; $@"; ) }
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
+}
+