Is there way to tell the bash find
command to output what it is doing (verbose mode)?
For example for the command:
find /media/1Tb/videos -maxdepth 1 -type d -mtime +7 -exec rm -rf {} \;
to output:
Found /media/1Tb/videos/102, executing rm -rf /media/1Tb/videos/102
...