Fixed some test canonifiers to read only from stdin

Fixed some test canonifier scripts to read from stdin instead of
from a filename specified as a cmd-line argument.  This is needed
in order to be able to reliably use them in a pipeline with other
test canonifiers.

Also removed some unused test canonifier scripts.
This commit is contained in:
Daniel Thayer 2015-09-18 17:27:30 -05:00
parent 09904aeb54
commit 6f1e07f6d5
6 changed files with 16 additions and 56 deletions

View file

@ -1,7 +1,8 @@
#! /usr/bin/awk -f
#! /usr/bin/env bash
#
# A diff canonifier that removes all connection UIDs.
awk '
BEGIN { FS="\t"; OFS="\t"; }
column > 0 {
@ -16,6 +17,4 @@ column > 0 {
}
{ print }
'