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