From: Jim Meyering Date: Thu, 17 Nov 2005 18:23:18 +0000 (+0000) Subject: split long line X-Git-Tag: v6.0~1324 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c9b1de9d5e70d5c730b13f8b9e7bf929d355b488;p=thirdparty%2Fcoreutils.git split long line --- diff --git a/tests/cp/acl b/tests/cp/acl index 214551e04b..8f2bbf7940 100755 --- a/tests/cp/acl +++ b/tests/cp/acl @@ -34,7 +34,8 @@ fi # copy a file without preserving permissions touch a/file || framework_failure=1 setfacl -m user:bin:rw a/file || framework_failure=1 -acl1=`cd a && getfacl file | grep -v ':bin:' | grep -v 'mask::'` || framework_failure=1 +acl1=`cd a && getfacl file | grep -v ':bin:' | grep -v 'mask::'` \ + || framework_failure=1 cp a/file b/ || fail=1 acl2=`cd b && getfacl file` || framework_failure=1 test "$acl1" == "$acl2" || fail=1