From: Niels Möller Date: Thu, 24 Oct 2002 20:09:52 +0000 (+0200) Subject: Doesn't need echo -n anymore. X-Git-Tag: nettle_1.7_release_20030311~219 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e264bd2bcaa63b5cbb74decf35ab1b4c90a333b0;p=thirdparty%2Fnettle.git Doesn't need echo -n anymore. Rev: src/nettle/examples/sexp-conv-test:1.3 --- 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 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