From b0c63de815369a3040654683ca55ea04e84faf24 Mon Sep 17 00:00:00 2001 From: Tim Shimmin Date: Fri, 3 Jun 2005 03:49:22 +0000 Subject: [PATCH] get rid of tee - works or irix but not on linux Merge of master-melb:xfs-cmds:22790a by kenmcd. get rid of tee - works or irix but not on linux when we don't get output from touch. Not really needed anyway. --- 005 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/005 b/005 index b5d93d70..853e0ad3 100755 --- a/005 +++ b/005 @@ -57,7 +57,7 @@ _touch() { # On IRIX: Too many symbolic links in path name traversal # On Linux: Too many levels of symbolic links - touch $@ 2>&1 | tee -a $here/$seq.full | grep -q 'Too many.*symbolic links' + touch $@ 2>&1 | grep -q 'Too many.*symbolic links' if [ $? -eq 0 ]; then echo "ELOOP returned. Good." else @@ -70,7 +70,6 @@ _touch() . ./common.filter # real QA test starts here -rm -f $here/$seq.full _supported_fs xfs udf nfs # IRIX UDF does not support symlinks -- 2.47.3