Zuletzt aktiv 1747055618

marxdawn: create zip of the contents of a picoCMS blog (only .md or .adoc)

santiago's Avatar santiago hat die Gist bearbeitet 1747055618. Zu Änderung gehen

Keine Änderungen

santiago's Avatar santiago hat die Gist bearbeitet 1747055605. Zu Änderung gehen

Keine Änderungen

santiago's Avatar santiago hat die Gist bearbeitet 1747055457. Zu Änderung gehen

Keine Änderungen

santiago's Avatar santiago hat die Gist bearbeitet 1747055401. Zu Änderung gehen

1 file changed, 18 insertions

Create zip of the contents of a picoCMS blog (only .md or .adoc) (Datei erstellt)

@@ -0,0 +1,18 @@
1 + #!/bin/bash
2 +
3 + BASEDIR=/var/www/www.lema.org
4 +
5 + cd $BASEDIR
6 +
7 + # Recreate the zip file with only .md and .adoc files, preserving subfolders
8 + # but not the "content/" folder
9 + (cd content && zip -r ../mxd_content.zip . -i '*.md' '*.gmi' '*.adoc')
10 +
11 + cd $BASEDIR
12 +
13 + # Find all mxd_content.zip files in the current directory and its subdirectories
14 + find . -name "mxd_content.zip" | while read zip_file; do
15 + # Calculate the MD5 hash of the zip file
16 + md5sum "$zip_file" | awk '{print $1}' > "${zip_file%.zip}.md5.txt"
17 + echo "MD5 hash saved for: $zip_file"
18 + done
Neuer Älter