From adbd318ff7dbc82c192dc7ff20f0e85a967e55ff Mon Sep 17 00:00:00 2001 From: Christopher Date: Fri, 12 Jul 2024 12:22:56 -0500 Subject: [PATCH] chore: Update download-zim-files script with decorative message and support link --- download-zim-files/run.sh | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/download-zim-files/run.sh b/download-zim-files/run.sh index 45d81ec..a91843b 100644 --- a/download-zim-files/run.sh +++ b/download-zim-files/run.sh @@ -1,5 +1,26 @@ #!/bin/bash +MESSAGE="Made by BigBearTechWorld" + +# Function to print a decorative line +print_decorative_line() { + printf "%s\n" "------------------------------------------------------" +} + +# Print the introduction message with decorations +echo +print_decorative_line +echo "Big Bear Download ZIM Files Script" +print_decorative_line +echo +echo "$MESSAGE" +echo +print_decorative_line +echo +echo "If this is useful, please consider supporting my work at: https://ko-fi.com/bigbeartechworld" +echo +print_decorative_line + # Check if URL is provided if [ -z "$1" ]; then echo "Usage: $0 [destination_directory]"