From: Matthias Andree Date: Tue, 30 May 2006 13:47:05 +0000 (+0200) Subject: Change more "echo -n" to "printf" to avoid screen clutter. X-Git-Tag: E2FSPROGS-1_40-WIP-1114~91 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0ac93a00c98af2f44e5d291788c7ccaa3ed239d3;p=thirdparty%2Fe2fsprogs.git Change more "echo -n" to "printf" to avoid screen clutter. Signed-off-by: Matthias Andree --- diff --git a/lib/blkid/test_probe.in b/lib/blkid/test_probe.in index 31ddf29eb..02d42bb25 100644 --- a/lib/blkid/test_probe.in +++ b/lib/blkid/test_probe.in @@ -12,7 +12,7 @@ mkdir -p tests for i in $TESTS do - echo -n "$i: " + printf "%s: " $i if test ! -f $SRCDIR/tests/$i.img.bz2 -a \ ! -f $SRCDIR/tests/$i.results ; then diff --git a/tests/f_resize_inode/script b/tests/f_resize_inode/script index 558bd4a0b..75d90fee9 100644 --- a/tests/f_resize_inode/script +++ b/tests/f_resize_inode/script @@ -1,4 +1,4 @@ -echo -n "e2fsck with resize_inode: " +printf "e2fsck with resize_inode: " FSCK_OPT=-yf OUT=$test_name.log if [ -f $test_dir/expect.gz ]; then diff --git a/tests/r_move_itable/script b/tests/r_move_itable/script index 72cd9ebd3..488fda2e0 100644 --- a/tests/r_move_itable/script +++ b/tests/r_move_itable/script @@ -1,4 +1,4 @@ -echo -n "resize2fs with resize_inode: " +printf "resize2fs with resize_inode: " if test -x $RESIZE2FS_EXE; then diff --git a/tests/r_resize_inode/script b/tests/r_resize_inode/script index dbd44ff3a..5422d3b54 100644 --- a/tests/r_resize_inode/script +++ b/tests/r_resize_inode/script @@ -1,4 +1,4 @@ -echo -n "resize2fs with resize_inode: " +printf "resize2fs with resize_inode: " if test -x $RESIZE2FS_EXE; then diff --git a/tests/run_e2fsck b/tests/run_e2fsck index 012037504..9b4f170d0 100644 --- a/tests/run_e2fsck +++ b/tests/run_e2fsck @@ -1,5 +1,5 @@ if [ "$DESCRIPTION"x != x ]; then - echo -n "$DESCRIPTION: " + printf "%s" "$DESCRIPTION: " fi if [ "$IMAGE"x = x ]; then IMAGE=$test_dir/image.gz