From 2a16d6fe19139ff6a2e156302ab48762e432c9bf Mon Sep 17 00:00:00 2001 From: Tobias Schmidl Date: Thu, 21 Nov 2024 20:46:55 +0100 Subject: [PATCH] feat: print version on start --- paperless.sh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/paperless.sh b/paperless.sh index 9d8995c..61d5cba 100755 --- a/paperless.sh +++ b/paperless.sh @@ -3,6 +3,9 @@ # # SPDX-License-Identifier: AGPL-3.0-or-later +VERSION="1.0.0" + +# load_env loads the .env file and checks if the necessary parameters are present. load_env () { [ ! -r "./.env" ] && { echo "env file not readable, please make sure a .env is present." >&2; exit 1; } . "./.env" @@ -10,6 +13,7 @@ load_env () { [ -z "$BASE_URL" ] && { echo "Parameter BASE_URL is not present in env file, please fill it with the URL of your paperless server." >&2; exit 1; } } +# print_usage prints the usage of the script. print_usage () { cat << END_OF_COMMENT $(basename "$0") get_tasks | put_document @@ -29,6 +33,11 @@ END_OF_COMMENT AUTH_PARM="Authorization: Token $TOKEN" + +echo "$(basename "$0") v${VERSION}" +echo "" + +[ "$#" -lt 1 ] && { print_usage; exit 1; } case "$1" in get_tasks) load_env