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:25:32 +01:00
|
|
|
last_file="${dir}/$(ls -ht -- "${dir}" | head -n1)"
|
2024-11-20 10:24:39 +01:00
|
|
|
echo "Last modified file is '${last_file}'"
|
2024-11-20 11:36:35 +01:00
|
|
|
touch -r "${last_file}" -- "${dir}"
|
2024-11-20 10:22:26 +01:00
|
|
|
done <<< "$(find . -mindepth 1 -maxdepth 1 -type d)"
|