97 lines
2.1 KiB
Bash
Executable File
97 lines
2.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
giusto=$(curl -L https://www.giardiniblog.it/streamingcommunity-nuovo-link/ | grep -oP '(?<=<strong>).*?(?=</strong></span></p>)' | grep -oP 'https://streamingcommunity.*')
|
|
|
|
formatted="${giusto#*://}"
|
|
formatted="${giusto#/*}"
|
|
|
|
cat <<- _EOF > /var/www/html/scommunity/index.html
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>StreamingCommunity Link Giusto</title>
|
|
<style>
|
|
body {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 4wh;
|
|
border: 10px solid #ccc;
|
|
background-color: #f4f4f4;
|
|
}
|
|
|
|
div {
|
|
width: 200wj;
|
|
height: 200wj;
|
|
background-color: #fbfbfb;
|
|
padding: 20px;
|
|
}
|
|
|
|
img {
|
|
max-width: 90%;
|
|
padding: 20px;
|
|
}
|
|
|
|
a {
|
|
width: 300wj;
|
|
height: 200wj;
|
|
}
|
|
|
|
|
|
h1 {
|
|
font-size: 36px;
|
|
/* Default size */
|
|
}
|
|
@media (max-width: 480px) {
|
|
h1 {
|
|
font-size: 17px;
|
|
/* Size mobile phones */
|
|
}
|
|
}
|
|
@media (max-width: 480px) {
|
|
h3 {
|
|
font-size: 15px;
|
|
/* Size mobile phones */
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<center>
|
|
|
|
<br><br>
|
|
|
|
<div class="link">
|
|
<h3>Link aggiornato per Streaming Community:</h3>
|
|
<h1><a href=$giusto>$giusto</a></h1>
|
|
<h3>(cambia circa una volta al mese)</h3>
|
|
</div>
|
|
|
|
<br><br>
|
|
|
|
<a href=$giusto target="_blank">
|
|
<img style="display:block; margin-left: auto; margin-right: auto" src="./splash.gif">
|
|
</a>
|
|
|
|
<br><br>
|
|
|
|
<div class="link">
|
|
<h3>Link aggiornato per Streaming Community:</h3>
|
|
<h1><a href=$giusto>$giusto</a></h1>
|
|
<h3>(cambia circa una volta al mese)</h3>
|
|
</div>
|
|
|
|
<br><br>
|
|
|
|
</center>
|
|
</body>
|
|
|
|
</html>
|
|
_EOF
|
|
|
|
sudo chown -R www-data:www-data /var/www/html/scommunity ; sudo chmod -R 755 /var/www/html/scommunity
|
|
|