This commit is contained in:
bash
2024-08-12 19:50:04 +00:00
parent 0f910bc421
commit 25129f6685
15 changed files with 0 additions and 0 deletions

15
script/update_realm_name.sh Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
#param 1
REALM_NAME=$1;
if [ -z "$REALM_NAME" ]
then
echo "First parameter 'REALM_NAME' is required";
exit 1;
fi
sed -e "s/{{REALM_NAME}}/$REALM_NAME/g" \
"${ROOT_DIR}/sql/update_realm_name.sql" > "/tmp/update_realm_name.sql"
sudo mysql -u root --database="acore_characters" < /tmp/update_realm_name.sql
echo "Server realm name updated..."