Does Python seem appropriate for me?

Steve Holden sholden at holdenweb.com
Sun Apr 22 14:08:55 EDT 2001


"Erno Kuusela" <erno-news at erno.iki.fi> wrote in message
news:kuoftpqei2.fsf at lasipalatsi.fi...
> In article <mailman.987895712.26743.python-list at python.org>, "Tim
> Peters" <tim.one at home.com> writes:
>
> | Trivial example:  say you use
>
> |     dir/s *.py
>
> | today to find all the .py files in the subtree rooted at the current
> | directory.  You're not going to *believe* the hoops you have to jump
through
> | to get that done under a Unix shell instead.
>
> like "ls **/*.py"? (zsh)
>
Yes, but without zsh that's spelled

    find . -name "*.py" -print

regards
 Steve






More information about the Python-list mailing list