How do I perform a file search with a search pattern in the current directory.



  • Also see: Man page for find.

    This could be a long list, terminate the output using Ctrl-C

    To perform a file search with a search pattern in the current directory. Here we list a file beginning with i

    $ find i*
    int
    

    Other examples.

    $ find *b
    fileb
    $ find *st
    test
    test/perf
    


© Lightnetics 2024