parent
9105396095
commit
7fd202ffc0
1 changed files with 16 additions and 0 deletions
@ -0,0 +1,16 @@ |
||||
#! /bin/bash |
||||
|
||||
DATE=`date +%Y%m%e%k` |
||||
INC=1 |
||||
|
||||
DATE=$((DATE*100 + 00)) |
||||
|
||||
for file in *; do |
||||
echo ${file} $((DATE+INC)) |
||||
touch -a -m -t $((DATE+INC)).00 "${file}" |
||||
INC=$((INC+1)) |
||||
if [ ${INC} == 60 ]; then |
||||
INC=0 |
||||
DATE=$((DATE+100)) |
||||
fi |
||||
done |
Loading…
Reference in new issue