5 lines
189 B
Bash
5 lines
189 B
Bash
|
#!/bin/bash
|
||
|
siteURL="`wp option get siteurl | sed -e 's/[^/]*\/\/\([^@]*@\)\?\([^:/]*\).*/\2/'`"
|
||
|
liveDomain="$siteURL"
|
||
|
#echo "$siteURL"
|
||
|
echo "$liveDomain" > /var/www/webroot/ROOT/livedomain
|