diff --git a/examples/sexp-conv-test b/examples/sexp-conv-test index c6de7ded8869af601c0d01a62eed94179520ced8..6335dac12bf937c719446bf8d2285b7e86ca1ab6 100755 --- a/examples/sexp-conv-test +++ b/examples/sexp-conv-test @@ -6,13 +6,13 @@ fi test_conv () { # FIXME: echo -n not portable - echo -n "$1" > test.in + echo "$1" > test.in if ./sexp-conv <test.in >test1.out ; then true else exit 1 fi - echo -n "$2" > test2.out + echo "$2" > test2.out if cmp test1.out test2.out ; then true