Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!seismo!lll-crg!lll-lcc!qantel!ihnp4!ih1ap!sja From: sja@ih1ap.UUCP (Steve Alesch) Newsgroups: net.sources.bugs Subject: Re: FSLS - List big files in file system - (nf) Message-ID: <576@ih1ap.UUCP> Date: Tue, 16-Sep-86 12:22:57 EDT Article-I.D.: ih1ap.576 Posted: Tue Sep 16 12:22:57 1986 Date-Received: Wed, 17-Sep-86 06:16:02 EDT References: <14600002@siedap.UUCP> <1273@ihlpl.UUCP> <573@ih1ap.UUCP> <1271@jade.BERKELEY.EDU> Organization: AT&T Bell Labs, Naperville, IL Lines: 31 Summary: you might exceed the shell environment limit In article <1271@jade.BERKELEY.EDU>, mwm@eris.berkeley.edu (Mike Meyer) writes: > 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... > >