fix indentation

This commit is contained in:
Jan Jastrow 2023-10-20 16:45:06 +02:00
parent f3378219e6
commit a24bc69e8c
1 changed files with 7 additions and 7 deletions

View File

@ -41,12 +41,12 @@ function manp() {
# pushover notification
function pushover() {
curl -s \
--form-string "token=$pushover_token" \
--form-string "user=$pushover_user" \
--form-string "title=$HOST" \
--form-string "message=$1" \
https://api.pushover.net/1/messages.json
curl -s \
--form-string "token=$pushover_token" \
--form-string "user=$pushover_user" \
--form-string "title=$HOST" \
--form-string "message=$1" \
https://api.pushover.net/1/messages.json
}
<<<<<<< HEAD
@ -101,7 +101,7 @@ function extract () {
*.Z) uncompress "$1" ;;
*.7z) 7z x "$1" ;;
*) echo "'$1' cannot be extracted via extract()" ;;
esac
esac
else
echo "'$1' is not a valid file"
fi