我有很多文件,我想在linux中更改修改日期。修改日期保存在文件名中。
所以我有文件,其名称为例如" IMG_20180101_010101.jpg",但修改日期是今天。我想将修改日期更改为2018-01-01 01:01:01,如文件名中所示。 我尝试过使用find和touch:
find . -iname 'IMG*' -print | while read filename; do touch -t {filename:7:8} "$filename"; done
当我这样做时,我总是收到错误("日期格式无效:{filename:7:8})。
我做错了什么?
答案 0 :(得分:1)
如果要根据文件名设置文件时间戳,可以尝试:
find -type f -name "IMG_*" -exec bash -c 'touch -t $(sed "s/.*IMG_\([0-9]\{8\}\)_\([0-9]\{4\}\)\([0-9]\{2\}\).jpg$/\1\2.\3/" <<< "$1") "$1"' _ {} \;
正如touch
手册页中所提到的,选项-t
需要格式[[CC]YY]MMDDhhmm[.ss]
。这就是sed
命令的目的。
答案 1 :(得分:0)
如果我理解得很好,您希望以自己的格式编写文件名。这个脚本怎么样:
#!/bin/bash
suffix=".jpg"
for file in "IMG*"; do # Careful, the loop will break on whitespace
fileDate=$(echo $file| cut -d'_' -f 2)
year=${fileDate:0:4}
month=${fileDate:4:2}
day=${fileDate:6:2}
fileHour=$(echo $file| cut -d'_' -f 3 | sed -e s/$suffix//)
hour=${fileHour:0:2}
min=${fileHour:2:2}
secs=${fileHour:4:2}
newName="$year-$month-$day $hour:$min:$secs$suffix"
mv $file "$newName"
done