diff options
Diffstat (limited to 'tests/sort.sh')
-rwxr-xr-x | tests/sort.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/sort.sh b/tests/sort.sh new file mode 100755 index 0000000..a01d066 --- /dev/null +++ b/tests/sort.sh @@ -0,0 +1,5 @@ +#!/bin/sh + +awk '/^[A-Za-z]+:/ { print $0 }' $1 > .foo +awk '!/^[A-Za-z]+:/ && !/inding/ { print $0 }' | sort >> .foo +rm $1 |