http://qs1969.pair.com?node_id=11144177

Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:

How to remove the . in the generated string

my $file = shift;

For the above variable it is giving an output like this "./root/git/common/crt_del/cert/DEFAULT.pem"

I want to remove the "." before the /root for that can i use like this $file =~ s{.}{}g or any other way is there to remove that dot in the string