in reply to transliteration of a string
my $slashes = '\\\\10.0.0.1\path\to\foo'; print "before: $slashes\n"; $slashes =~ s/\\/\//g; print "after.: $slashes\n"; [download]
before: \\10.0.0.1\path\to\foo after.: //10.0.0.1/path/to/foo [download]