try tool to extract brew info versions 1

This commit is contained in:
Stephen Gaito 2019-12-06 17:17:47 +00:00
parent 741e6fdd5d
commit 5b1a711514
1 changed files with 5 additions and 2 deletions

View File

@ -33,15 +33,18 @@ echo $PATH
echo $LDFLAGS
echo $CPPFLAGS
which clang
brew info --json=v1 python@2 | jq '.[].installed'
python2Version = brew info --json=v1 python@2 | jq '.[].installed[].version'
echo $python2Version
echo "-------------------------------------------------"
brew info python@2
brew switch python 2.7.17
brew switch python $python2Version
echo "-------------------------------------------------"
echo $PATH
echo $LDFLAGS
echo $CPPFLAGS
which clang
which python
python --version
echo "-------------------------------------------------"
#brew install -v pdf2htmlex-new
echo "-------------------------------------------------"