in reply to Re^3: Perl Style: About error messges opening files
in thread Perl Style: About error messges opening files

To safe another char, one could write

system qw(mkdir -p), $foo;

But best would be if perl had a backtick operator like lisp (that is elisp, don't know about other lisp implementations):

system `(mkdir -p ,$foo);