From 5838046c4cd6e57a9e82c92fdac4aebbbbbebe97 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Sun, 3 Feb 2019 12:19:33 +0100 Subject: Preserve file dataspace mtime --- extractAll.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extractAll.sh b/extractAll.sh index 8b8649f..4aab128 100755 --- a/extractAll.sh +++ b/extractAll.sh @@ -13,7 +13,7 @@ while read -r F; do pushd "$destdir" || continue for G in ./*; do echo "Converting $G to ${G}.txt" - $root/convertFileDs.py "$G" > "${G}.txt" || rm "${G}.txt" + $root/convertFileDs.py "$G" > "${G}.txt" && touch -r "${G}" "${G}.txt" || rm "${G}.txt" done popd rm "$linear" -- cgit v1.2.3