[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[ale] chown options
- Subject: [ale] chown options
- From: esoteric at 3times25.net (Geoffrey)
- Date: Wed Jan 19 11:01:37 2005
- In-reply-to: <043501c4fe3e$5bfb9ba0$6603a8c0@win2kpro1>
- References: <043501c4fe3e$5bfb9ba0$6603a8c0@win2kpro1>
Ryan Fish wrote:
> Hello all,
>
> Is it possible to perform a recursive chown but exclude one
> particular directory? If so, how would it be done? I have yet to
> find any info on this online so I figured I would ask...
find . -print|grep -v $DIRECTORY_TO_EXCLUDE|xargs -n 10 chown foo.bar
--
Until later, Geoffrey