Help for this page

Select Code to Download


  1. or download this
    $ ls -1 /tmp/test/
    other.txt
    ...
    test1.txt
    test2.txt
    test3.txt
    
  2. or download this
    $ perl find_files.pl test*.txt
    
  3. or download this
    $ perl find_files.pl 'test.*\.txt'
    wildcard is test.*\.txt
    ...
    /tmp/test/test3.txt
    /tmp/test/test2.txt
    /tmp/test/test1.txt