Skip to content

Instantly share code, notes, and snippets.

@mwidmann
Forked from aseering/winpath,sh
Last active July 5, 2018 10:15
Show Gist options
  • Save mwidmann/a31315e6545737429799d9d232e85d3f to your computer and use it in GitHub Desktop.
Save mwidmann/a31315e6545737429799d9d232e85d3f to your computer and use it in GitHub Desktop.
#!/usr/bin/perl -w
foreach $argnum (0 .. $#ARGV) {
my $curr = $ARGV[$argnum];
my $replaced = $curr =~ s/\\/\//gr;
$replaced =~ s|^([A-Za-z])\:/(.*)$|/$1/$2|;
print "$replaced ";
}
print "\n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment