You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
498 B
17 lines
498 B
#!/bin/bash
|
|
|
|
BASE="http://www.anesacademy.com/"
|
|
|
|
BASE_PARSED=$(echo $BASE | sed 's/\//\\\//g')
|
|
|
|
cd public
|
|
for f in *.html
|
|
do
|
|
sed -i "s/href\=\"\//href\=\"$BASE_PARSED/g" "$f"
|
|
sed -i "s/src\=\"\//src\=\"$BASE_PARSED/g" "$f"
|
|
sed -i "s/src\=\"\.\//src\=\"$BASE_PARSED/g" "$f"
|
|
done
|
|
cd ..
|
|
|
|
#scp -r -i ./auth/marketmind.pem ./public/* ubuntu@18.194.83.82:/var/www/anesacademy.com/
|
|
rsync -avz --delete -e "ssh -i ./auth/marketmind.pem" ./public/* ubuntu@18.194.83.82:/var/www/anesacademy.com/
|