Re: problem in using "find" command in HPUX 11



On Jul 16, 11:20 pm, Sven Mascheck <dcous.f.masch...@xxxxxxxxxxxxxxx>
wrote:
Michael Tosch wrote:
find . -type d \! -name . -prune -o -print

find . ! -name . -prune -o -print

(you want to "exclude" anything but . anyway)

thanks a lot for all your inputs.

.