最後活躍 1747055618

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

santiago's Avatar santiago 已修改 1747055618. 還原成這個修訂版本

沒有任何變更

santiago's Avatar santiago 已修改 1747055605. 還原成這個修訂版本

沒有任何變更

santiago's Avatar santiago 已修改 1747055457. 還原成這個修訂版本

沒有任何變更

santiago's Avatar santiago 已修改 1747055401. 還原成這個修訂版本

1 file changed, 18 insertions

Create zip of the contents of a picoCMS blog (only .md or .adoc) (檔案已創建)

@@ -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
上一頁 下一頁