diff options
-rwxr-xr-x | support/check_forensic | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/support/check_forensic b/support/check_forensic index d1512f34cf..a3b530917b 100755 --- a/support/check_forensic +++ b/support/check_forensic @@ -10,5 +10,6 @@ F=$1 cut -f 1 -d '|' $F > /tmp/fc-all.$$ grep + < /tmp/fc-all.$$ | cut -c2- | sort > /tmp/fc-in.$$ grep -- - < /tmp/fc-all.$$ | cut -c2- | sort > /tmp/fc-out.$$ +# use -i instead of -I for GNU xargs join -v 1 /tmp/fc-in.$$ /tmp/fc-out.$$ | xargs -I xx egrep "^\\+xx" $F rm /tmp/fc-all.$$ /tmp/fc-in.$$ /tmp/fc-out.$$ |