Re: Kleines Scripting-Problem
Hi Gregor,
Gregor Schneider wrote:
> On Nov 29, 2007 12:18 PM, Heiko Schlittermann <hs@schlittermann.de> wrote:
>> Wenn schon mit -exec, dann aber:
>>
>> find /PATH -type f -mtime +30 -exec rm -f {} +
>>
> was macht das "+"?
aus man find:
-exec command {} +
This variant of the -exec option runs the specified command on the
selected files, but the command line is built by appending each
selected file name at the end; the total number of invocations of the
command will be much less than the number of matched files.
The command line is built in much the same way that xargs builds its
command lines. Only one instance of '{}' is allowed within the
command. The command is executed in the starting directory.
hth
Reinhold
Reply to: