Bug 4711

Summary: xargs -i doesn't do what I expect
Product: [Retired] Red Hat Linux Reporter: jeastmond
Component: findutilsAssignee: David Lawrence <dkl>
Status: CLOSED NOTABUG QA Contact:
Severity: medium Docs Contact:
Priority: medium    
Version: 6.0   
Target Milestone: ---   
Target Release: ---   
Hardware: i386   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 1999-08-26 21:55:19 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description jeastmond 1999-08-26 00:08:06 UTC
Running the command line:

echo "a b c" | xargs -n1 -i echo {}

gives

a b c

instead of

a
b
c

Comment 1 Jeff Johnson 1999-08-26 21:55:59 UTC
Try
	echo a b c | tr ' ' '\n' | xargs -n1 -i echo {}