I would like to create a new directory that its content is soft links to the the content of an existing directory, and set full permissions for this new directory.
I know how to this is in bash:
mkdir -m a=rwx new_dir
cd new_dir
ln -s /path/to/old/dir/* .
but having some problems with finding the perl equivalent
How about something like this:
Of course, with Perl, “There’s always more than one way to do it”.