From e264bd2bcaa63b5cbb74decf35ab1b4c90a333b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20M=C3=B6ller?= <nisse@lysator.liu.se> Date: Thu, 24 Oct 2002 22:09:52 +0200 Subject: [PATCH] Doesn't need echo -n anymore. Rev: src/nettle/examples/sexp-conv-test:1.3 --- examples/sexp-conv-test | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/sexp-conv-test b/examples/sexp-conv-test index c6de7ded..6335dac1 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 -- GitLab