actfeels.sh
## Copia espejo del Feels desde tilde.club a texto-plano.xyz
## por ~peron
 
## Elimino el feels viejo...
cd /home/$USER/public_html/
rm -r feels/
mkdir /home/$USER/public_html/feels/
cd /home/$USER/public_html/feels/
 
## Descargo  el estilo de feels y lo pongo en texto-plano:
wget -O style.css https://tilde.club/~$USER/blog/style.css
 
## Descargo el index.html compilado únicamente 
## (los html y las entradas fuente de tilde.club se encuentran en
## https://tilde.club/~$USER/blog
wget -O index.html https://tilde.club/~$USER/blog/index.html
 
##devuelvo al home de $USER y actualizo los permisos de la web:
echo "~$USER, te devuelvo a tu /home..."
cd /home/$USER/
find /home/$USER/public_html/feels/ -type d -print0 | xargs -0 chmod 755
find /home/$USER/public_html/feels/ -type f -print0 | xargs -0 chmod 64