Bug 940

Summary: "find" doesn`t process command line
Product: [Retired] Red Hat Linux Reporter: kuehnel
Component: findutilsAssignee: David Lawrence <dkl>
Status: CLOSED WORKSFORME QA Contact:
Severity: high Docs Contact:
Priority: high    
Version: 5.2   
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-01-24 19:04:51 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 kuehnel 1999-01-24 18:14:03 UTC
when executing:

find ./ -name "*.old" -exec rm {};

find complains that the arguments to -exec are missing!

Comment 1 Jeff Johnson 1999-01-24 19:04:59 UTC
Try
	find ./ -name "*.old" -exec rm {} \;