in reply to How to get system user name from windows using perl

Try getlogin to get the username.
  • Comment on Re: How to get system user name from windows using perl

Replies are listed 'Best First'.
Re^2: How to get system user name from windows using perl
by veerubiji (Sexton) on Nov 10, 2011 at 12:49 UTC

    thanks for your reply and I tried as you said like this,

    my $username = getlogin || getpwuid($<) || "veeru"; print $username;

    it printing my usename its working ok but How can I use this variable in my template process.

      but How can I use this variable in my template process

      You could put it in your $data hash:

      $data->{username} = ...; ... $template->process(\*DATA, $data, $filename) ... \issuedby{[% username %]}

        Than you very much thats perfect, its working.