Do you guys have an idea on how to search or list down .exe files on the server I am currently using.. (or maybe place it in an array)? I will use this command in my Perl program. Assuming that my program is also located on the said server. My OS is Linux - Ubuntu if that even matters, just in case.. working in CLI here. =)
|
|
|||||||||||||
|
|
|
I'll probably be shot down for suggesting this, but you don't have to use modules for a simple task. For example:
Of course, it will need to have some tweaking for your particular choice of starting directory (here, I used ~ for the home directory) EDIT: Maybe I should have said until you get the modules installed |
|||
|
|
As mentioned, It is not clear whether you want '*.exe' files, or executable files. You can use File::Find::Rule to find all executable files.
If you are looking for executable files, you (the user running the script) need to be able to execute the file, so you probably need to run the script as root. It might take a long time to run to. If you are looking for .exe files, chances are that your disk is already indexed by
|
|||
|
|
|
Perl to find every file under a specified directory that has a
|
||||||||
|
|
|
Have a look at File::Find. Alternatively, if you can come up with a command line to the *nix |
|||
|
|
