Subject: search a file

Hello, I'm writing a simple perl program. no CGI.
* I need to make the program list all the files that have an extension of
".v" in the current directory. Do anyone know a function that makes that ?!
Best Regards,
Eliyah


One way ...

@a=glob('*.v');
print join("\n",@a), "\n";

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to