in reply to Re^2: Help with exercise
in thread Help with exercise

Any changes to what is the current directory made while running perl disapear when perl ends.

in your perl script add

use Cwd; print 'Cwd:'.getcwd."\n";
after the
chdir($Dir);
and you will see that you did move to that directory while perl was running.

Replies are listed 'Best First'.
Re^4: Help with exercise
by codeKnight (Initiate) on Sep 23, 2017 at 01:19 UTC
    Thanks. I wAS expecting a bash-type cd
      cd in a bash script doesn't effect the parent process either.