8 lines
165 B
Bash
8 lines
165 B
Bash
|
#!/bin/sh
|
||
|
@@@find_printf@@@ "$@" -type f -printf '%TY%Tm%Td%TH%TM.%TS %p\n' |
|
||
|
while read timestamp file
|
||
|
do
|
||
|
echo > "$file"
|
||
|
touch -t "$timestamp" "$file"
|
||
|
done
|