jon.kelbie.scot website
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

11 lines
200 B

#!/bin/bash
for folder in $(find . -maxdepth 1 -type d)
do
crdate=$(stat -c "%w" $folder)
month=${crdate:5:2}
year=${crdate:0:4}
if [ $year = "2020" ] && [ $month = "06" ];
then
echo $folder;
fi
done