From aa65c94c0a07a8dc5fee285f896ffec4b066aaad Mon Sep 17 00:00:00 2001 From: Sergey Matveev Date: Sat, 19 Feb 2022 13:44:45 +0300 Subject: [PATCH] Corrent mtime won't hurt --- cmd/download-encs.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/download-encs.zsh b/cmd/download-encs.zsh index 11a1ee8..b612aef 100755 --- a/cmd/download-encs.zsh +++ b/cmd/download-encs.zsh @@ -16,7 +16,7 @@ for new (new/*(N)) { url=$cols[2] [[ -n "$url" ]] fn=$(strftime %Y%m%d-%H%M%S)-$(url-to-filename $url) - wget --output-document=$dst/$fn $url 2>&2 2>enc.log + wget --timestamping --output-document=$dst/$fn $url 2>&2 2>enc.log print $dst/$fn done < $new } -- 2.44.0