Created
June 19, 2013 10:29
-
-
Save edouard-lopez/5813327 to your computer and use it in GitHub Desktop.
How to –correctly– pass the result of 'npm list --global --parseable 2> /dev/null | grep generator' to the while loop, in order to extract unique module name
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
#!/usr/bin/env bash | |
dir=$1 | |
if [[ ! -z $dir ]]; then | |
npm list --parseable 2> /dev/null | grep generator | |
else | |
# moduleList=$(<"") | |
while IFS= read -r module; do | |
echo "$(basename $module)" | |
done < "$(npm list --global --parseable 2> /dev/null | grep generator)" | |
fi |
Here is what I did
#!/usr/bin/env bash
workingDir=$1
if [[ $workingDir ]]; then
npm list --parseable 2> /dev/null | grep generator
else
npm list --global --parseable 2> /dev/null \
| grep generator \
| while read line; do \
basename $line; \
done \
| sort -d \
| uniq
fi
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
See http://mywiki.wooledge.org/ProcessSubstitution