show/hide this revision's text 3 added 42 characters in body

@dr_pepper

Remove literal duplicates in $PATH:

$ export PATH=$(perl -F: -ane'print join q/:/, grep { !$c{$_}++ } @F'<<<$PATH)

Print unique clean paths from %PATH% environment variable (it doesn't touch ../ and alike, replace File::Spec->rel2abs by Cwd::realpath if it is desirable)desirable) It is not a one-liner to be more portable:

#!/usr/bin/perl -w
use File::Spec; 

$, = "\n"; 
print grep { !$count{$_}++ } 
      map  { File::Spec->rel2abs($_) } 
      File::Spec->path;
show/hide this revision's text 2 added export ...

@dr_pepper

Remove literal duplicates in $PATH:

$ perl export PATH=$(perl -F: -ane'print join q/:/, grep { !$count{$_}++ $c{$_}++ } @F'<<<$PATH
<<<$PATH)

Print unique clean paths from %PATH% environment variable (it doesn't touch ../ and alike, replace File::Spec->rel2abs by Cwd::realpath if it is desirable):

#!/usr/bin/perl -w
use File::Spec; 

$, = "\n"; 
print grep { !$count{$_}++ } 
      map  { File::Spec->rel2abs($_) } 
      File::Spec->path;
show/hide this revision's text 1

@dr_pepper

Remove literal duplicates in $PATH:

$ perl -F: -ane'print join q/:/, grep { !$count{$_}++ } @F'<<<$PATH

Print unique clean paths from %PATH% environment variable (it doesn't touch ../ and alike, replace File::Spec->rel2abs by Cwd::realpath if it is desirable):

#!/usr/bin/perl -w
use File::Spec; 

$, = "\n"; 
print grep { !$count{$_}++ } 
      map  { File::Spec->rel2abs($_) } 
      File::Spec->path;