Gentoo Archives: gentoo-user

From: Adam Carter <adamcarter3@×××××.com>
To: gentoo-user@l.g.o
Subject: Re: [gentoo-user] Crufted with perl modules?
Date: Wed, 17 Nov 2010 22:49:30
Message-Id: AANLkTi=VASq19tztWJ6WQ3i0bi0XRzEedEswt4qL5qgw@mail.gmail.com
In Reply to: Re: [gentoo-user] Crufted with perl modules? by "Sebastian Beßler"
1 I wasnt familiar with + but it changes the default behavior of this;
2 find /path -name something -exec ls -lS {} \;
3 which will run ls -lS once for each file, and therefore Sort doesnt work as
4 its only sorting a single file
5
6 find /patch -name something -exec -ls -lS +
7 which runs ls -lS once against all the files that find finds (added as
8 additional arguments), and therefore Sort works.

Replies

Subject Author
Re: [gentoo-user] Crufted with perl modules? Alan McKinnon <alan.mckinnon@×××××.com>