plot2svg.test 162 B

1234567891011
  1. #!/bin/sh
  2. ../plot/plot -T svg <$SRCDIR/graph.xout >plot2svg.out
  3. if cmp -s $SRCDIR/plot2svg.xout plot2svg.out
  4. then retval=0;
  5. else retval=1;
  6. fi;
  7. exit $retval