Good day. I have a file, I want to create directories only on a new file system with the same owners and group names.
so I have a input file that looks like:
____________________
# file: /filename/
# owner: me
# group: group
user::rwx
ser:uid:rwx
group::r--
# file: /filename/
# owner: you
# group: yourgroup
user::rwx
ser:uid:rwx
group::r--
__________________
I have figured out how to print directories and in reading the Cammel book 'Programming Perl' it says to put all of the variables into an array to save from making a lot of threads to the mkdir call. Not really sure how to do something like that.
Thanks a lot
A