Created
June 19, 2013 15:49
-
-
Save edouard-lopez/5815399 to your computer and use it in GitHub Desktop.
Is there a way to optimize my listing?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
npm list --global --parseable 2> /dev/null \ | |
| grep '/generator-' \ | |
| while read line; do __yo_getSuggestion $line; done \ | |
| sort -u \ | |
| uniq |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
__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