.
diff --git a/recomendador/README.md b/recomendador/README.md
new file mode 100644
index 0000000..3658e05
--- /dev/null
+++ b/recomendador/README.md
@@ -0,0 +1,13 @@
+# Bot que recomienda seguir los últimos canales con actividad de un nodo peertube
+
+
+# apt install git toot
+# toot login # just the first time
+# adduser recomendador
+# su - recomendador
+$ mkdir bots
+$ cd bots
+$ git clone http://git.56k.es/fanta/recomendador
+$ crontab -e
+00 10 * * * /bin/bash /home/recomendador/bots/recomendador/recomendador.sh
+
diff --git a/recomendador/recomendador.sh b/recomendador/recomendador.sh
new file mode 100755
index 0000000..f0419fb
--- /dev/null
+++ b/recomendador/recomendador.sh
@@ -0,0 +1,26 @@
+#!/bin/bash
+# apt install git toot wget
+# toot login # Just the first time
+
+peertubeNode="fediverse.tv"
+apiUrlLastVideos="https://$peertubeNode/api/v1/videos"
+tmpFile="/tmp/.lastChannelsPeertube"
+
+function main {
+ getLastChannelsAccountsWithActivity
+ createTootMsg
+}
+
+function getLastChannelsAccountsWithActivity {
+ wget -q "$apiUrlLastVideos" -O - | tr "\"" "\n" | grep -i "https://$peertubeNode/video-channels" | cut -d "/" -f 5 | sort -u > $tmpFile
+ readarray -t channel < $tmpFile && > $tmpFile
+ for a in "${channel[@]}"; do echo "@$a@$peertubeNode" >> $tmpFile; done
+ readarray -t channel < $tmpFile
+}
+
+function createTootMsg {
+ tootMsg="Cuentas recomendadas para seguir ${channel[@]}. Cuentas con contenido multimedia que han tenido actividad en las últimas 24horas #fediverse #fediverso #video #peertube #canales #channels"
+ toot post "$tootMsg"
+}
+
+main