in reply to Re^2: Deleting first and last lines of a text file
in thread Deleting first and last TWO(2) lines of a text file

Have a read about quoting to see why the variable isn't interpolated. Also, never say "it didn't work" as a bug report - that's pretty much content-free.

Replies are listed 'Best First'.
Re: String interpolation
by vsmeruga (Acolyte) on May 16, 2014 at 16:49 UTC

    got it . Double quotes instead of single here . Thanks!!

    my $infile = "/home/vmeruga_alt/EXEC_${filedt}.txt";
Re: String interpolation
by vsmeruga (Acolyte) on May 16, 2014 at 16:42 UTC

    Below is the code for test.pl and it printed the variable to a output file:test.txt. But it could not replace with the variable(${filedt} in file name)

    #!/usr/bin/perl use Time::Piece; use warnings; use strict; my $file='test.txt'; open STDOUT, ">", $file or die "$0: open: $!"; open STDERR, ">&STDOUT" or die "$0: dup: $!"; my $filedt = localtime->strftime('%Y%m%d'); print $filedt; #my $infile = '/home/vmeruga_alt/EXEC_${filedt}.txt';