| 1234567891011121314151617181920 | #!/bin/bashD=$1if [ "$D" = "" ]; then    echo "Usage: sign-binaries 201912312359"    exitfiif [ "$QUBES_GPG_DOMAIN" = "" ]; then    GPG=gpgelse    GPG=qubes-gpg-client-wrapperfifor file in dist/borg-*; do    $GPG --local-user "Thomas Waldmann" --armor --detach-sign --output $file.asc $filedonetouch -t $D dist/*
 |