Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!seismo!nbires!hao!hplabs!ucbvax!jade!eris!mwm From: mwm@eris.berkeley.edu (Mike Meyer) Newsgroups: net.sources.bugs Subject: Re: FSLS - List big files in file system - (nf) Message-ID: <1271@jade.BERKELEY.EDU> Date: Sun, 14-Sep-86 10:11:36 EDT Article-I.D.: jade.1271 Posted: Sun Sep 14 10:11:36 1986 Date-Received: Tue, 16-Sep-86 02:08:41 EDT References: <14600002@siedap.UUCP> <1273@ihlpl.UUCP> <573@ih1ap.UUCP> Sender: usenet@jade.BERKELEY.EDU Reply-To: mwm@eris.UUCP (Mike Meyer) Organization: Missionaria Phonibalonica Lines: 20 In article <573@ih1ap.UUCP> sja@ih1ap.UUCP (Steve Alesch) writes: >> >> find / -size +nnn -exec ls -l {} \; > >You can bury the machine this way!!!! It's incredibly more efficient >using xargs(1) instead. > > find / -size +nnn -print | xargs ls -l > >Sorry, but this is one of my pet peeves. And for those of you who don't have xargs (I thought such creatures died after v6!), you can do: ls -l `find / +nnn -print` Which shell facility is, of course, why I thought xargs-like things died after v6...