How do I tell Perl to execute a piece of generated perl code?
- by T. Gruhn
I am trying to catch the string "cd /a/b/c" and do the following conversion
(as part of a larger perl program).
If "cd /a/b/c" exists then convert"
cd /a/b/c -- chdir '/a/b/c'
execute "chdir '/a/b/c' "
I can do the conversion; I cant tell PERL to execute my PERL command...