Files
azerothcore_installer/helper/clear-ah.sh
2024-07-22 23:26:52 +00:00

12 lines
239 B
Bash
Executable File

#!/bin/bash
read -p "This will delete all items of the auction house, are you sure? (Y)es/(N)o: " -n 1 -r
echo " ";
if [[ $REPLY =~ ^[Yy]$ ]];
then
sudo mysql -u root --database="acore_characters" -e "DELETE FROM auctionhouse;"
fi