diff options
Diffstat (limited to 'tests.sh')
-rwxr-xr-x | tests.sh | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -96,7 +96,10 @@ if [ "$1" == "update" ]; then fi function bfs_sort() { - LC_ALL=C awk -F/ '{ print NF - 1 " " $0 }' | sort -n | awk '{ print $2 }' + ( + export LC_ALL=C + awk -F/ '{ print NF - 1 " " $0 }' | sort -n | awk '{ print $2 }' + ) } function bfs_diff() { |