sort -m
This commit is contained in:
parent
5ee0771f2b
commit
a94d04b136
5
urchin
5
urchin
@ -228,7 +228,12 @@ report_outcome() {
|
|||||||
# Use a temporary file rather than a pipe because a pipe starts a sub-shell
|
# Use a temporary file rather than a pipe because a pipe starts a sub-shell
|
||||||
# and thus makes the above variables local.
|
# and thus makes the above variables local.
|
||||||
sorted_log_file=$(mktemp)
|
sorted_log_file=$(mktemp)
|
||||||
|
|
||||||
|
# Sort in alphabetical order.
|
||||||
|
# GNU sort requires -m, and BSD sort doesn't.
|
||||||
|
sort -m "$log_file" > $sorted_log_file ||
|
||||||
sort "$log_file" > $sorted_log_file
|
sort "$log_file" > $sorted_log_file
|
||||||
|
|
||||||
while read line; do
|
while read line; do
|
||||||
abspath=$(echo "$line" | cut -f1)
|
abspath=$(echo "$line" | cut -f1)
|
||||||
path=$(echo "$abspath" | sed "s/$escaped_root\/\?//")
|
path=$(echo "$abspath" | sed "s/$escaped_root\/\?//")
|
||||||
|
Loading…
Reference in New Issue
Block a user