mirror of
https://github.com/hermensbas/azerothcore_installer.git
synced 2026-01-13 08:37:17 +00:00
12 lines
239 B
Bash
Executable File
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
|
|
|