Add new comment
Unix Scripting Hints
Submitted by dave on Fri, 10/03/2008 - 10:47
Workaround for "Argument list is too long" shell errors
for file in *.aud
do
find $file -mtime +7 -exec 'rm' {} \;
done
Workaround for "Argument list is too long" shell errors
for file in *.aud
do
find $file -mtime +7 -exec 'rm' {} \;
done
Content Copyright 2006-2022. Links are copyright of respective owners.