MaJ du 22-10-2020

This commit is contained in:
2020-10-22 20:12:27 +02:00
parent 4485e7096d
commit 84b4e1a85d
22 changed files with 639 additions and 46 deletions

View File

@@ -636,7 +636,7 @@ $ brew tap <tapname>
$ brew untap <tapname>
```
#### Configuration de Homebrew:
#### Configuration de Homebrew (brew config):
```bash
$ brew config
@@ -662,6 +662,57 @@ Xcode: 11.3.1
XQuartz: 2.7.11 => /opt/X11
```
#### Afficher les formules qui ont le paquet cité comme dépendance (brew uses):
```bash
$ brew uses autoconf
asdf autoconf-archive automake crosstool-ng node-build php php@7.2 php@7.3 pyenv ruby-build vice
# afficher uniquement les paquets installés
$ brew uses --installed autoconf
php php@7.2 php@7.3 pyenv
$ brew info python@3.7
python@3.7: stable 3.7.9 (bottled) [keg-only]
Interpreted, interactive, object-oriented programming language
https://www.python.org/
Not installed
From: https://github.com/Homebrew/homebrew-core/blob/HEAD/Formula/python@3.7.rb
License: Python-2.0
==> Dependencies
Build: pkg-config ✔
Required: gdbm ✔, openssl@1.1 ✔, readline ✔, sqlite ✔, xz ✔
```
#### Voir les dépendances d'un paquet:
```bash
$ brew deps thefuck
gdbm
openssl@1.1
python@3.8
readline
sqlite
xz
```
#### Voir tous les packages installés, ainsi que tous les packages installés qui en dépendent:
```bash
$ brew list -1 | while read cask; do echo -ne "\x1B[1;34m $cask \x1B[0m"; brew uses $cask --installed | awk '{printf(" %s ", $0)}'; echo ""; done
annie
antibody
aom ffmpeg
apr apr-util httpd php php@7.2 php@7.3
apr-util httpd php php@7.2 php@7.3
argon2 php php@7.2 php@7.3
argyll-cms displaycal
aspell php php@7.2 php@7.3
atk gtk+ gtk+3
autoconf php php@7.2 php@7.3 pyenv
```
### Commandes externes: