Skip to content

Instantly share code, notes, and snippets.

@edouard-lopez
Created June 19, 2013 10:29
Show Gist options
  • Save edouard-lopez/5813327 to your computer and use it in GitHub Desktop.
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
#!/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
@edouard-lopez
Copy link
Author

@edouard-lopez
Copy link
Author

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