Uso este pequeño script para cargar todas las imagenes sin escribirlas manualmente. ```bash #!/bin/sh if [ $# -lt 2 ] then echo "Uso: $0 \"\" " exit; fi year=$(date +%Y) month=$(date +%m) name_month=$(date +%B) day=$(date +%d) cp posts/2025-10-hola.html posts/$year-$month-$day-$1.html sed -i "/
    /a\
  • $2 – $day $name_month $year
  • " index.html #ls -1 $3 | sed -e "s|^||" | tee -a "posts/$year-$month-$day-$1.html" ### Carga imagenes de archive. for i in $(ls -1 $3/*.jpg); do echo "" >> "posts/$year-$month-$day-$1.html" ; done vim "posts/$year-$month-$day-$1.html" ```