From 68deecc34b66f21ec36b69147418f7005634c6b0 Mon Sep 17 00:00:00 2001 From: Andreas Hrubak Date: Tue, 24 Dec 2024 22:50:16 +0100 Subject: [PATCH] fix --- user-tools/cpyfattr | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/user-tools/cpyfattr b/user-tools/cpyfattr index 38e3601..0b1597c 100755 --- a/user-tools/cpyfattr +++ b/user-tools/cpyfattr @@ -9,7 +9,7 @@ cpyfattr - Copy file attributes (xattr) =head1 SYNOPSIS -cpyfattr [I] I I +cpyfattr I I [I] =head1 DESCRIPTION @@ -19,6 +19,7 @@ using getfattr(1) and setfattr(1). =head1 OPTIONS All options passed to setfattr(1). +Note that I are at the end of argument list. =head1 SEE ALSO @@ -35,7 +36,9 @@ set -o pipefail set -u source=$1 -dest=$2 +shift +dest=$1 +shift { echo "# file: $dest" -- 2.11.4.GIT