Skip to content

Instantly share code, notes, and snippets.

@dkarter
Created October 24, 2015 18:58
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 dkarter/028275acbb857a0d5508 to your computer and use it in GitHub Desktop.
Save dkarter/028275acbb857a0d5508 to your computer and use it in GitHub Desktop.
PrettyPrint $PATH with awk
echo $PATH | awk '{ n = split($0, paths, ":"); for (i=0; ++i <= n;) print i, paths[i] }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment