in reply to Perl Script in Windows Works, but not in Unix

In your '$dirto...' section, UNIX file directories are done like: usr/Documents/Data, not like usr\Documents\data as Windows uses. That might fix the problem.
  • Comment on Re: Perl Script in Windows Works, but not in Unix

Replies are listed 'Best First'.
Re^2: Perl Script in Windows Works, but not in Unix
by jcklasseter (Sexton) on Jun 26, 2015 at 18:50 UTC
    As in, go to wherever you're trying to call the directory from, type  pwd and then put that into the place instead.
Re^2: Perl Script in Windows Works, but not in Unix
by dobster936 (Novice) on Jun 26, 2015 at 18:50 UTC

    I realize this. I've been using:

    $dirtoget="/netscr/name/extraction/10K-txt/"; $dirwrite="/netscr/name/extraction/MDA/";

    Does this look fine?

      As in, go to wherever you're trying to call the directory from, type  pwd and then put that into the place instead.