From d300d3af84d2ec542be294083fd82341b034d34c Mon Sep 17 00:00:00 2001 From: Connor Olding Date: Fri, 1 Oct 2021 10:29:14 -0700 Subject: [PATCH] ignore .git subdirectories, tiny refactor --- sh/decently | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/sh/decently b/sh/decently index 368795c..938ee5d 100644 --- a/sh/decently +++ b/sh/decently @@ -4,19 +4,28 @@ # YES_DASH # YES_ASH -decently() { ### @- +# TODO: check if this is compatible with busybox. + +decently() ( ### @- ### given a list of directories, update the last-modified timestamp ### of each argument to that of the most recent file that it contains. + ### + ### note that *files* are found recursively, but only the + ### *outermost directory* (the one specified by argument) + ### has its timestamp updated. symlinks are followed. + ### `.git` subdirectories are skipped over. + ### the timestamps of subdirectories are ignored. local arg= dir= latest= prev= ts= fails= succs=0 + finder() { find "$dir" -type f "$@" '!' -path '*/.git/*' -print -quit; } [ -n "$1" ] || { printf '%s: missing directory argument\n' decently >&2; return 1; } for arg; do dir="$(readlink -f "$arg")" || continue [ -d "$dir" ] || { printf '%s: not a directory: %s\n' decently "$dir" >&2; continue; } prev= - latest="$(find "$dir" -type f -print -quit)" || continue + latest="$(finder)" || continue while [ -n "$latest" ]; do prev="$latest" - latest="$(find "$dir" -newer "$latest" -type f -print -quit)" || break + latest="$(finder -newer "$latest")" || break done [ -e "$prev" ] || { printf '%s: no valid files found: %s\n' decently "$dir" >&2; continue; } ts="$(date -u '+%s' -r "$prev")" @@ -28,6 +37,6 @@ decently() { ### @- fails=$(( $# - succs )) [ $fails -le 255 ] || fails=255 return $fails -} +) [ -n "${preload+-}" ] || decently "$@"