The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
.
google unix.com



UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !!

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
Perl Script Error with find command MKNENI Shell Programming and Scripting 4 03-26-2008 12:02 PM
find command with exec doesnt work funtochat2002 Shell Programming and Scripting 6 07-26-2006 02:29 PM
Find command with prune and exec options Sebarry UNIX for Dummies Questions & Answers 2 06-19-2006 04:07 AM
Find command with prune and exec Sebarry UNIX for Advanced & Expert Users 1 06-18-2006 01:43 PM

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish Powered by Powered by Google
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 06-12-2006
pavan_test pavan_test is offline
Registered User
  
 

Join Date: Oct 2005
Posts: 53
find command exec error

Hi All,

i am writing a shell script in korn shell
which deletes all the files in a directory
once in every 10DAYS.

the directory has different format files.

the script has something like this;


cd /home/data/pavi
echo "Please Enter the Number of Days to search for"
read DAYS
echo "The entered number of days is $DAYS"
DOACTION="rm -rf"
find DD.* -maxdepth 1 -mtime +$DAYS -exec $DOACTION {} \;
find AA.* -maxdepth 1 -mtime +$DAYS -exec $DOACTION {} \;

the script is working fine DD.* extension.

But for those files with AA.* extension i am getting the following
error message;

pav.ksh[33]: find: Argument list too long.
there are total 22,309 files with AA.* extension.

can anyone please suggest me the best approach here,

thanks
pavi
  #2 (permalink)  
Old 06-13-2006
tayyabq8's Avatar
tayyabq8 tayyabq8 is offline Forum Advisor  
Moderator
  
 

Join Date: Nov 2004
Location: Bahrain
Posts: 578
Check the max length of arguments to exec:
Code:
grep 'ARG_MAX' /usr/include/limits.h
or Try this:
Code:
find AA.* -maxdepth 1 -mtime +$DAYS | xargs $DOACTION
Regards,
Tayyab

Last edited by tayyabq8; 06-13-2006 at 12:43 AM..
  #3 (permalink)  
Old 06-13-2006
grial's Avatar
grial grial is offline Forum Advisor  
El UNIX es como un toro
  
 

Join Date: Jun 2006
Location: Madrid (Spain)
Posts: 531
Quote:
Originally Posted by pavan_test

find DD.* -maxdepth 1 -mtime +$DAYS -exec $DOACTION {} \;
find AA.* -maxdepth 1 -mtime +$DAYS -exec $DOACTION {} \;
You should change these two lines into:

find . -name "DD.*" -maxdepth 1 -mtime +$DAYS -exec $DOACTION {} \;
find . -name "AA.*" -maxdepth 1 -mtime +$DAYS -exec $DOACTION {} \;

Quote:
Originally Posted by pavan_test
pav.ksh[33]: find: Argument list too long.
there are total 22,309 files with AA.* extension.
This error is produced by the use of "*". It means there are too many files on the directory. That's because of the shell's limits when using wildcards.

Regards.
Closed Thread

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT -4. The time now is 08:39 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language Translations Powered by .
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0