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
386 B
17 lines
386 B
5 years ago
|
#!/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@3.94.203.176:/var/www/anesacademy.com/
|