Skip to content

Instantly share code, notes, and snippets.

@kyoh86
Created January 8, 2016 01:16
Show Gist options
  • Save kyoh86/964ef278c3f0ec06c9a7 to your computer and use it in GitHub Desktop.
Save kyoh86/964ef278c3f0ec06c9a7 to your computer and use it in GitHub Desktop.
List-up applications' name and url, installed with Homebrew
brew list|grep -v '^lib' |while read line; do
echo -n ${line}$'\t'
brew info $line | grep '^http'
done | column -t -s $'\t'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment