Last active
February 17, 2016 08:31
-
-
Save PieterScheffers/ddc153c774170d8ede72 to your computer and use it in GitHub Desktop.
FreeBSD find PHP ports installed (PHP5.6)
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
| # Find php ports | |
| portmaster -L | grep php | sed -e "s/===>>> //g" | sed -e "s/-5.6.18_1//g" | sed -e "s/-5.6.18//g" | sed -e "s/-1.0//g" | |
| # Uninstall ports | |
| portmaster -L | grep php | sed -e "s/===>>> //g" | sed -e "s/-5.6.18_1//g" | sed -e "s/-5.6.18//g" | sed -e "s/-1.0//g" | xargs -I {} sh -c 'portmaster -ye --no-confirm {}' | |
| php56 | |
| php56-ctype | |
| php56-curl | |
| php56-dom | |
| php56-filter | |
| php56-ftp | |
| php56-gd | |
| php56-hash | |
| php56-iconv | |
| php56-imap | |
| php56-json | |
| php56-mbstring | |
| php56-mcrypt | |
| php56-mysql | |
| php56-mysqli | |
| php56-opcache | |
| php56-openssl | |
| php56-pdo | |
| php56-pdo_mysql | |
| php56-pdo_sqlite | |
| php56-phar | |
| php56-posix | |
| php56-session | |
| php56-simplexml | |
| php56-sockets | |
| php56-sqlite3 | |
| php56-tokenizer | |
| php56-xml | |
| php56-xmlreader | |
| php56-xmlrpc | |
| php56-xmlwriter | |
| php56-zip | |
| php56-zlib | |
| php56-extensions | |
| php56 | |
| php56-dom | |
| php56-hash | |
| php56-mbstring | |
| php56-mysql | |
| php56-mysqli | |
| php56-pdo | |
| php56-session | |
| php56-xml | |
| php56-xmlrpc | |
| mod_php56 | |
| php56-ctype | |
| php56-curl | |
| php56-fileinfo | |
| php56-filter | |
| php56-gd | |
| php56-iconv | |
| php56-imap | |
| php56-json | |
| php56-mcrypt | |
| php56-opcache | |
| php56-openssl | |
| php56-pdo_mysql | |
| php56-pdo_sqlite | |
| php56-phar | |
| php56-posix | |
| php56-simplexml | |
| php56-tokenizer | |
| php56-xmlwriter | |
| php56-xsl | |
| php56-zip |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment