in reply to Re: Re: Re: rename files dynamically
in thread rename files dynamically
I'm trying to pass @new_path to a $_ variable to be process could you please help?#! perl -w use strict; my $infile = 'c:/doclist1.chr'; my $outfile = 'c:/doclist1.txt'; open IN, "<$infile" or die "Couldn't open $infile, $!"; open OUT, ">$outfile" or die "Couldn't open $outfile, $!"; while(<IN>) { chomp; my @fields = split /,/; my $path_str = $fields[6]; do { warn "Empty field 7"; next } unless $path_str; my @path = split /\\/, $path_str; # assuming you want to remove a few directories my @new_path = join "\\", @path[0,5,6]; print OUT "\n@new_path"; } exit;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: Re: rename files dynamically
by pfaut (Priest) on Feb 24, 2003 at 18:20 UTC |