#!/bin/bash set -euo pipefail; if [[ -z "${1:-}" ]]; then echo "Missing file for upload" > /dev/stderr; exit 2; fi curl -H "Linx-Api-Key: {{ auth_code }}" -H "Linx-Delete-Key: {{ auth_code }}" -T "$1" https://{{ domain }}/upload/;