Skip to content

Instantly share code, notes, and snippets.

@edt11x
Created March 3, 2015 19:49
Show Gist options
  • Save edt11x/09a10cb54cbf2c105038 to your computer and use it in GitHub Desktop.
Save edt11x/09a10cb54cbf2c105038 to your computer and use it in GitHub Desktop.
Print the PATH with each directory on a separate line
#!/usr/bin/env perl
use strict;
use warnings;
use Env;
if ($^O eq "MSWin32") {
print join($/, split(/;/, $PATH)), "\n";
} else {
print join($/, split(/:/, $PATH)), "\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment