Skip to content

Commit

Permalink
Update s3a_wrapper.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
Zejnilovic authored May 15, 2024
1 parent ed2522e commit 7c87c5d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions scripts/bash/s3a_wrapper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,9 @@ while [[ $# -gt 0 ]]; do
elif [ "$1" == "|" ]; then
# If the argument is a pipe character
other_args+=("'|'")
elif [[ "$1" == "\t" ]]; then
# If the argument is a tab character
other_args+=("'\t'")
elif [[ "$1" =~ ^[[:space:]]+$ ]]; then
# If the argument is one or more space characters
other_args+=("'$1'")
Expand Down

0 comments on commit 7c87c5d

Please sign in to comment.