[SOLVED] Re: use find to generate print list

2020-01-25 Thread Russell L. Harris
On Sat, Jan 25, 2020 at 09:23:12AM +0100, to...@tuxteam.de wrote: On Sat, Jan 25, 2020 at 07:43:40AM +, Russell L. Harris wrote: In the "find" man page is an example which uses (1) "-prune" to exclude a directory and (2) "! -name '*~'" to exclude both files and directories the name of which

Re: use find to generate print list

2020-01-25 Thread Roberto C . Sánchez
On Sat, Jan 25, 2020 at 09:23:12AM +0100, to...@tuxteam.de wrote: > On Sat, Jan 25, 2020 at 07:43:40AM +, Russell L. Harris wrote: > > In the "find" man page is an example which uses (1) "-prune" to > > exclude a directory and (2) "! -name '*~'" to exclude both files and > > directories the nam

Re: use find to generate print list

2020-01-25 Thread tomas
On Sat, Jan 25, 2020 at 07:43:40AM +, Russell L. Harris wrote: > In the "find" man page is an example which uses (1) "-prune" to > exclude a directory and (2) "! -name '*~'" to exclude both files and > directories the name of which end in "~": > > find . -name .snapshot -prune -o \( \! -name