From c2537f44d3735894dd4f80b8666a2c77fa96ba4f Mon Sep 17 00:00:00 2001 From: Chris Bosse <30784811+chrisBosse@users.noreply.github.com> Date: Mon, 12 Jun 2023 13:33:06 -0400 Subject: [PATCH] Fix options for touch command Date was changing, but not minutes and seconds. --- fqt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fqt b/fqt index e340f6c..ed7a10c 100644 --- a/fqt +++ b/fqt @@ -145,5 +145,5 @@ UTC_TOUCH="$(date -d "$GIVEN_DATE"Z +%Y%m%d%H%M.%S)" # YYYYmmddHHMM.SS # 202306062139.34 -#echo touch -m "$UTC_TOUCH" "$2" -touch -m "$UTC_TOUCH" "$2" +#echo touch -mt "$UTC_TOUCH" "$2" +touch -mt "$UTC_TOUCH" "$2"