Delete all empty directories found with find
find -depth -type d -empty -exec rmdir {} \;
Tag: empty
-
Delete empty directories
-
Empty a database table command
How to empty a mysql database. Forget about delete * command
#!/bin/bash mysql -D $DATABASE -e 'TRUNCATE TABLENAME;'