Skip to content

Instantly share code, notes, and snippets.

@edouard-lopez
Created June 19, 2013 15:49
Show Gist options
  • Save edouard-lopez/5815399 to your computer and use it in GitHub Desktop.
Save edouard-lopez/5815399 to your computer and use it in GitHub Desktop.
Is there a way to optimize my listing?
npm list --global --parseable 2> /dev/null \
| grep '/generator-' \
| while read line; do __yo_getSuggestion $line; done \
| sort -u \
| uniq
__yo_getSuggestion() {
modulePath="${1:-DEBUG_ME}"
pkg="$(basename "$modulePath")"
(( $+blacklist[(r)$pkg] )) && continue # skip blacklisted items
package="${pkg//$k}"
versions=( "$package"/ ) # limit to directories
description="$(__yo_getDescription "$modulePath")"
suggestion=$(printf "%s:%s" "$package" "$description")
# echo "$suggestion"
generator+=( "$suggestion" )
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment