I have a Linux "find" in my perl code that is run from the terminal.
I would like to replace it with a perl version so that my code will be more portable.
This is the command I run:
find -P $orig_dir -printf "%u;%U;%g;%G;%M;%y;%P;\n
I am using it to collect information about all items(links,directories,files) in a directory. I then go through the resulting array and put the results in a csv file.