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.
16 lines
386 B
16 lines
386 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/
|