Skip to content

Instantly share code, notes, and snippets.

@lisanhu
Last active July 3, 2019 04:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lisanhu/605dff9ae3f6e9e5bfb63c89f2f3f0f8 to your computer and use it in GitHub Desktop.
Save lisanhu/605dff9ae3f6e9e5bfb63c89f2f3f0f8 to your computer and use it in GitHub Desktop.
Clean up PATH like environment variables to remove duplicates
echo -n $PATH | awk 'NF && !seen[$0]++ {printf "%s:", $0}' RS=':'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment