summaryrefslogtreecommitdiffstats
path: root/tests/sort-args.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/sort-args.sh')
-rwxr-xr-xtests/sort-args.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/sort-args.sh b/tests/sort-args.sh
index f801d3b..227cc1a 100755
--- a/tests/sort-args.sh
+++ b/tests/sort-args.sh
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
-args=($({ for arg; do echo "$arg"; done } | sort))
+IFS=$'\n' read -rd '' -a args < <(printf '%s\n' "$@" | sort)
echo "${args[@]}"