summaryrefslogtreecommitdiffstats
path: root/install-win32/dosname.pl
blob: 5bfa6b92d6c3b8a3c37e7a7725528f83d9636c99 (plain)
1
2
3
4
5
6
7
#!/usr/bin/perl

while ($unixname = shift(@ARGV)) {
  $unixname =~ s#^/([a-zA-Z])(/|$)#$1:\\#g;
  $unixname =~ s#/#\\#g;
  print "$unixname\n";
}