Files
freeplanet_serverside/scripts/mongodb_delete_database_test.sh
2022-08-01 15:49:27 +02:00

12 lines
262 B
Bash
Executable File

#!/bin/bash
db=Test_FreePlanet
port=27018
read -p "*** DATABASE MONGODB DI TEST -------- SEI SICURO DI CANCELLARE IL DATABASE $db (Y/N) ? " risposta
if [[ $risposta == "Y" || $risposta == "y" ]]; then
mongo $db --port $port --eval "db.dropDatabase()"
fi