From bf0983a5bcafe938ca998d20c943846969bfcb96 Mon Sep 17 00:00:00 2001 From: "alvaro@thinkpad" Date: Sat, 16 May 2026 13:24:21 +0200 Subject: [PATCH] con cat --- convert-to-html-and-upload-to-apache.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/convert-to-html-and-upload-to-apache.sh b/convert-to-html-and-upload-to-apache.sh index f82c6f2..c84629f 100755 --- a/convert-to-html-and-upload-to-apache.sh +++ b/convert-to-html-and-upload-to-apache.sh @@ -16,9 +16,11 @@ convert_to_html(){ } upload(){ - for HTML in $(ls *.md) + for HTML in $(ls *.html) do + echo "::::::::::::::::::::::::::::::::::" echo "USAR scp O ftp O CUALQUIER OTRA COSA PARA SUBIR LOS HTML A UN APACHE: $HTML" + cat $HTML done }