I would like to execute ls in a Perl program as part of CGI script.
For this I used exec(ls), but this does not return from the exec call.
Is there a better way to get a listing of a directory in Perl?
|
|
|
|
|
|
|
Exec doesn't return at all. If you wanted that, use system. If you just want to read a directory, open/read/close-dir may be more appropriate.
|
||||||||
|
|
|
In order to get the output of a system command you need to use backticks.
However, Perl is good in dealing with directories for itself. I'd recommend using File::Find::Rule. |
||
|
|
|
|
exec does not give control back to the perl program. system will, but it does not return the results of an ls, it returns a status code. tick marks `` will give you the output of our command, but is considered by some as unsafe. Use the built in dir functions. opendir, readdir, and so on. |
||
|
|
|
|
I would recommend you have a look at IPC::Open3. It allows for far more control over the spawned process than system or the backticks do. |
||
|
|
|
|
Everyone else seems stuck on the exec portion of the question. If you want a directory listing, use Perl's built-in |
||
|
|
|
On Linux, I prefer find:
|
||
|
|