Find all tmp folders in actual directory and delete their content (but keep dotfiles)
Freitag, 03. Mai 2019, 09:22 Uhr | roberto@vasquez-angel.de |find ./ -type d -name "tmp" -execdir rm -rf tmp/* \;
find ./ -type d -name "tmp" -execdir rm -rf tmp/* \;