Sorry I forgot the right bug address already and the xargs man page
has none.

There might be a conflict between xargs -n and -i.

The users wants to do
uuencode .forward .forward
uuencode .procmailrc .procmailrc
but can't get -n 1 to work while -i was there using this:
echo .forward .procmailrc|xargs -n 1 -i uuencode {} {}
so he gave up and used
for i in .forward .procmailrc; do uuencode $i $i; done
-- 
http://jidanni.org/ Taiwan(04)25854780



_______________________________________________
Bug-coreutils mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-coreutils

Reply via email to