Created
September 3, 2013 11:55
-
-
Save sullenfish/6422876 to your computer and use it in GitHub Desktop.
Output only the results of npm -g outdated via the_silver_searcher in zsh.
This file contains hidden or 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
# asynch | |
npm -g outdated 2>>(ag --nocolor '^((?!npm http).)*$') | |
# synch | |
{ { npm -g outdated 1>&3 } 2>&1 | ag --nocolor '^((?!npm http).)*$' } 3>&1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment