With this I found that the folders recursed for 12 levels in 21 seconds, netting a 3gb temp/ folder in the original server directory
Code: Select all
count=0
while [ -d "temp"  ]
do
        cd temp/currently-playing
        let "count++"
        echo $count
done
echo $count

