md-to-html/convertir.sh
Kristina ea664b0c70
Some checks failed
Deploy HTML / deploy (push) Failing after 19s
prueba 2
2026-05-16 18:32:25 +02:00

12 lines
No EOL
296 B
Bash

-#!/bin/sh
+#!/bin/bash
+set -euo pipefail
- for MD in $(ls *.md)
+ for md in *.md; do
+ [ -f "$md" ] || continue
- echo "USAR scp O ftp O CUALQUIER OTRA COSA PARA SUBIR LOS HTML: $HTML"
- cat $HTML
+ cp "$html" /output/
+ echo "https://portaljack.freeddns.org/${html}"