Re: OFFTOPIC: Re: hardlinks.... sucks... ;-(

Andreas Kostyrka (andreas@ag.or.at)
Wed, 7 Jan 1998 14:05:20 +0100 (MET)


On Wed, 7 Jan 1998, Mitch Davis wrote:

> Albert D. Cahalan wrote:
> >
> > > Try something a bit like one of the following:
> > >
> > > find / -user 1234 -print | xargs chown 4321
One can use also:
find / -user 1234 -print0 | xargs -0 chown 4321
(That should solve the problem with spaces, etc.)

Andreas