Add Bash shell script source file to cleanup (delete) all Apach Geode files created at runtime.

This commit is contained in:
John Blum
2021-03-30 16:40:14 -07:00
parent 9e92ca251f
commit db03332430

View File

@@ -0,0 +1,8 @@
#!/bin/bash
rm -Rf `find . -name "BACKUPDEFAULT*"`
rm -Rf `find . -name "ConfigDiskDir*"`
rm -Rf `find . -name "locator*" | grep -v "src"`
rm -Rf `find . -name "newDB"`
rm -Rf `find . -name "server" | grep -v "src"`
rm -Rf `find . -name "*.log"`