get_youtube_videos/fix_dir_dates.sh

13 lines
547 B
Bash
Raw Normal View History

2024-11-20 10:22:26 +01:00
#!/bin/bash
while read -r dir
do
2024-11-20 10:24:39 +01:00
echo "Checking dir '${dir}'..."
2024-11-20 10:22:59 +01:00
last_file=$(ls -ht -- "${dir}" | head -n1)
2024-11-20 10:24:39 +01:00
echo "Last modified file is '${last_file}'"
2024-11-20 10:22:26 +01:00
last_file_time=$(stat -c %Y -- "${last_file}")
2024-11-20 10:24:39 +01:00
echo "Last modification time of the file is '${last_file_time}'"
2024-11-20 10:22:26 +01:00
last_file_time_formated=$(date -d "@${last_file_time}" +%Y%m%d%H%M.%S)
2024-11-20 10:24:39 +01:00
echo "Last modification time formated is '${last_file_time_formated}'"
2024-11-20 10:22:26 +01:00
touch -a -m -t "${last_file_time_formated}" -- "${dir}"
done <<< "$(find . -mindepth 1 -maxdepth 1 -type d)"