Now really truncate to 0 bytes (instead of 1).
This commit is contained in:
parent
94d4248916
commit
173ccac1bc
|
@ -2,6 +2,6 @@
|
||||||
@@@find_printf@@@ "$@" -type f -printf '%TY%Tm%Td%TH%TM.%TS %p\n' |
|
@@@find_printf@@@ "$@" -type f -printf '%TY%Tm%Td%TH%TM.%TS %p\n' |
|
||||||
while read timestamp file
|
while read timestamp file
|
||||||
do
|
do
|
||||||
echo > "$file"
|
echo -n "" > "$file"
|
||||||
touch -t "$timestamp" "$file"
|
touch -t "$timestamp" "$file"
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in New Issue