Use tr's \n notation rather than \012.
authorJim Meyering <jim@meyering.net>
Wed, 14 May 2003 06:26:34 +0000 (06:26 +0000)
committerJim Meyering <jim@meyering.net>
Wed, 14 May 2003 06:26:34 +0000 (06:26 +0000)
tests/cp/same-file
tests/misc/nice
tests/mkdir/perm
tests/mv/part-symlink
tests/rm/deep-1
tests/stty/basic-1
tests/stty/row-col-1

index 639098ebd4940144c3c21f75dc48a287ced91910..4f9349ef5a2a7c1e3718cb534c88423ac6dce033 100755 (executable)
@@ -92,7 +92,7 @@ for args in 'foo symlink' 'symlink foo' 'foo foo' 'sl1 sl2' 'foo hardlink'; do
            echo symlink-loop
          fi
        done
-      ) | tr '\012' ' '
+      ) | tr '\n' ' '
       echo
     ) | sed 's/  *$//'
     cd ..
index 6b2feacd67eb0365b3beb1792a19cb59f4f403f5..d42f0ae5e17a8305c039d8d94344f27abebd4374 100755 (executable)
@@ -58,7 +58,7 @@ while :; do
   args=`echo x$args|tr : ' '|sed 's/^x//'`
   if test "$VERBOSE" = yes; then
     #echo "testing \`nice $args nice\` = $expected_result ..."
-    echo "test $test_name... " | tr -d '\012'
+    echo "test $test_name... " | tr -d '\n'
   fi
   test x`nice $args nice 2> /dev/null` = x$expected_result \
     && ok=ok || ok=FAIL fail=1
index 3e18eab1a20a79c021ddd6b2778df8264ef33267..71998f711f982197a98fd2a3269662c786bf7736 100755 (executable)
@@ -48,7 +48,7 @@ for p in empty -p; do
 
   old_IFS=$IFS
   IFS=':'
-  set - `(echo "$tests"|tr -d '\012'; echo)|sed 's/^ *//;s/ *:/:/g;s/: */:/g'`
+  set - `(echo "$tests"|tr -d '\n'; echo)|sed 's/^ *//;s/ *:/:/g;s/: */:/g'`
   IFS=$old_IFS
 
   while :; do
index 4bcef66e8d03e51e322a0ee5974fd663d38ae56b..ccceee511ef0a83c675b9dd05c974c6c51e52981 100755 (executable)
@@ -97,9 +97,9 @@ for copy in cp mv; do
          # remove any site-dependent part of other-partition file name,
          # and put brackets around the output.
          test -s .err && {
-           echo '[' | tr -d '\012'
+           echo '[' | tr -d '\n'
            sed 's/^[^:][^:]*\(..\):/\1:/;s,'$other_partition_tmpdir/,, .err
-           echo ']' | tr -d '\012'
+           echo ']' | tr -d '\n'
            }
          # Strip off all but the file names.
          # Remove any site-dependent part of each file name.
@@ -146,7 +146,7 @@ for copy in cp mv; do
              fi
            done
          fi
-       ) | tr '\012' ' '
+       ) | tr '\n' ' '
        echo
       ) | sed 's/  *$//'
       cd ..
index 21702ad0e5bb54ec211736f29e12f05a46989944..f653be9ba0363685efe805ed92ff71ede29d13ec 100755 (executable)
@@ -31,14 +31,14 @@ k_deep=$k200$k200
 
 # Create a directory in $tmp with lots of `k' components.
 deep=$tmp$k_deep
-echo "creating a hierarchy 400 deep in $tmp..." |tr -d '\012'
+echo "creating a hierarchy 400 deep in $tmp..." |tr -d '\n'
 mkdir -p $deep || fail=1
 echo done
 
 # Make sure the deep dir was created.
 test -d $deep || fail=1
 
-echo "deleting $tmp..." |tr -d '\012'
+echo "deleting $tmp..." |tr -d '\n'
 rm -r $tmp || fail=1
 echo done
 
index 3771fc24d3dd59dc0f6a74f3bd8e9ffbd45f76cc..780b43678f28d604fa65b6546656967383e65c97 100755 (executable)
@@ -33,7 +33,7 @@ stty `cat $saved_state` || fail=1
 stty erase -
 
 # Build a list of all boolean options stty accepts on this system.
-options=`stty -a|tail -n +2|tr ';' '\012'|sed '/ = /d;s/^ //;s/-//g'`
+options=`stty -a|tail -n +2|tr ';' '\n'|sed '/ = /d;s/^ //;s/-//g'`
 
 # Take them one at a time, with and without the leading `-'.
 for opt in $options; do
@@ -54,7 +54,7 @@ done
 if test -n "$RUN_LONG_TESTS"; then
   # Take them in pairs.
   for opt1 in $options; do
-    echo .|tr -d '\012'
+    echo .|tr -d '\n'
     for opt2 in $options; do
 
       stty $opt1 $opt2 || fail=1
index 0ede6cb7f4f83044adeb3f588b245779a1292c60..06a74c8afb2fbb2d60209d48cd1eb7e8dd9c7c35 100755 (executable)
@@ -47,7 +47,7 @@ while :; do
   args=`echo x$args|tr _ ' '|sed 's/^x//'`
   if test "$VERBOSE" = yes; then
     # echo "testing \`stty $args; stty size\` = $expected_result ..."
-    echo "test $test_name... " | tr -d '\012'
+    echo "test $test_name... " | tr -d '\n'
   fi
   stty $args || exit 1
   test x"`stty size 2> /dev/null`" = "x$expected_result" \