最后活跃于 1747055618

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

santiago's Avatar santiago 修订了这个 Gist 1747055618. 转到此修订

没有任何变更

santiago's Avatar santiago 修订了这个 Gist 1747055605. 转到此修订

没有任何变更

santiago's Avatar santiago 修订了这个 Gist 1747055457. 转到此修订

没有任何变更

santiago's Avatar santiago 修订了这个 Gist 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
上一页 下一页