X-Git-Url: https://git.madduck.net/etc/zsh.git/blobdiff_plain/57d22c7977ad80556aca28496d0192d4a72ef73a..308358cae2dd574c92560b7b20cc51394ddb9708:/.zsh/util diff --git a/.zsh/util b/.zsh/util index 422dba9..9b86536 100644 --- a/.zsh/util +++ b/.zsh/util @@ -30,4 +30,24 @@ array_append() { 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