in reply to Re^5: How to write the perl script for the following linux command?
in thread How to write the perl script for the following linux command?

the error ocurrs at this line if($_ =~ /.csv/){
  • Comment on Re^6: How to write the perl script for the following linux command?

Replies are listed 'Best First'.
Re^7: How to write the perl script for the following linux command?
by Corion (Patriarch) on Mar 14, 2017 at 12:56 UTC

    Please post a self-contained, small example that reproduces the behaviour you see.

    Using the below code, I cannot reproduce your problem:

    #!perl -w use strict; my $sorce_direcrtory = '.'; my $new_directory = './target/'; opendir(my $dh, $sorce_direcrtory) || die $!; while(readdir $dh) { print "Found directory entry [$_]\n"; if($_ =~ /.csv/){ print qq{copy("$sorce_direcrtory/$_", "$new_directory/$_")\n}; } } closedir $dh;
      How it is possible to $_ wihtout using my