Skip to content

Instantly share code, notes, and snippets.

@ammarnajjar
Created September 17, 2019 11:22
Show Gist options
  • Save ammarnajjar/a7ab65b7df0a21fc6c2b161ce87dcc5c to your computer and use it in GitHub Desktop.
Save ammarnajjar/a7ab65b7df0a21fc6c2b161ce87dcc5c to your computer and use it in GitHub Desktop.
remove duplicates from PATH
# remove duplicates from PATH
# order in reverse as well
export PATH=$(echo -n $PATH | awk -v RS=: '{print}' | sort -r | awk '!($0 in a) {a[$0]; printf("%s%s", length(a) > 1 ? ":" : "", $0)}')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment