Skip to content

Instantly share code, notes, and snippets.

@kawaz
Created January 12, 2012 03:54
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 kawaz/1598614 to your computer and use it in GitHub Desktop.
Save kawaz/1598614 to your computer and use it in GitHub Desktop.
nvm用にnave ls-remote相当の機能を付けたいメモ
curl -s http://nodejs.org/dist/ |
egrep -o 'v[0-9]+\.[0-9]+\.[0-9]+' |
sort -u -k 1,1n -k 2,2n -k 3,3n -t . |
awk '{printf "%-9s",$1} NR%8==0{print ""} END{print ""}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment