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
after theuse Cwd; print 'Cwd:'.getcwd."\n";
and you will see that you did move to that directory while perl was running.chdir($Dir);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Help with exercise
by codeKnight (Initiate) on Sep 23, 2017 at 01:19 UTC | |
by Anonymous Monk on Sep 23, 2017 at 03:38 UTC |