Chris Angelico <ros...@gmail.com>:

> $ find Music/ -name *\\?*

I do recommend quoting your wildcard characters.

Yet further nasty security pitfalls in bash programming:

 5. Wildcards that don't match any file are left unexpanded.

 6. Commands behave unexpectedly when given null lists:

    $ ls a b c
    a     b     c
    $ ls a b
    a     b
    $ ls a
    a
    $ ls
    a     b     c     d


Marko
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to