]> git.ipfire.org Git - thirdparty/nettle.git/commitdiff
Doesn't need echo -n anymore.
authorNiels Möller <nisse@lysator.liu.se>
Thu, 24 Oct 2002 20:09:52 +0000 (22:09 +0200)
committerNiels Möller <nisse@lysator.liu.se>
Thu, 24 Oct 2002 20:09:52 +0000 (22:09 +0200)
Rev: src/nettle/examples/sexp-conv-test:1.3

examples/sexp-conv-test

index c6de7ded8869af601c0d01a62eed94179520ced8..6335dac12bf937c719446bf8d2285b7e86ca1ab6 100755 (executable)
@@ -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