use STDIN interface to sort

This commit is contained in:
Thomas Levine 2016-03-06 13:42:52 +00:00
parent 40d1c63f37
commit afde2b1b30
1 changed files with 1 additions and 1 deletions

2
urchin
View File

@ -281,7 +281,7 @@ report_outcome() {
# Use a temporary file rather than a pipe because a pipe starts a sub-shell
# and thus makes the above variables local.
sorted_log_file=$(mktemp)
"${sort}" "${log_file}" > "${sorted_log_file}"
cat "${log_file}" | "${sort}" > "${sorted_log_file}"
while read line; do
abspath=$(echo "${line}" | cut -f1)