diff options
Diffstat (limited to 'bin/tmp')
-rwxr-xr-x | bin/tmp | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -62,7 +62,8 @@ fi for f in "$@"; do FILENAME="$(basename "$f")" - ssh "$TLD" "mkdir -p $REMOTE_TMP && cat > $REMOTE_TMP/$FILENAME" < "$f" + # shellcheck disable=2029 + ssh "$TLD" "mkdir -p '$REMOTE_TMP' && cat > '$REMOTE_TMP/$FILENAME'" < "$f" LINK="$(printf 'https://%s/tmp/%s' "$TLD" "$FILENAME")" open "$LINK" |