Bug 113807 - find and xargs complain about a missing single quote when none is given
Summary: find and xargs complain about a missing single quote when none is given
Keywords:
Status: CLOSED NOTABUG
Alias: None
Product: Red Hat Enterprise Linux 2.1
Classification: Red Hat
Component: findutils
Version: 2.1
Hardware: All
OS: Linux
medium
medium
Target Milestone: ---
Assignee: Tim Waugh
QA Contact: Mike McLean
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2004-01-18 16:50 UTC by Glen A. Foster
Modified: 2007-11-30 22:06 UTC (History)
0 users

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2004-01-18 22:09:01 UTC
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)

Description Glen A. Foster 2004-01-18 16:50:21 UTC
Description of problem: I just ran across this.  It occurs on RHEL2.1
and RHL 7.2 both, but appears to work correctly on RHEL3.

Version-Release number of selected component (if applicable):
# rpm -qf $(which xargs)
findutils-4.1.7-1
# find /home -type f | xargs ls -s
xargs: unmatched single quote

How reproducible: 100%

Steps to Reproduce:
1. run the above command on RHEL 2.1

Comment 1 Tim Waugh 2004-01-18 22:09:01 UTC
One of your files has this quote in.

You probably meant to do:

find /home -type f -print0 | xargs -0 ls -s


Note You need to log in before you can comment on or make changes to this bug.