echo "⭐ START: backup"
- command -v yq > /dev/null || errlog "command yq not found" || return $?
+ command -v yq > /dev/null \
+ || errlog "command yq not found" \
+ || return $?
+ command -v rsync > /dev/null \
+ || errlog "command rsync not found" \
+ || return $?
+ command -v ssh > /dev/null \
+ || errlog "command ssh not found" \
+ || return $?
[ -f "config.yaml" ] \
|| errlog "file config.yaml not found" \
|| return $?