5 lines
97 B
Bash
5 lines
97 B
Bash
#!/usr/bin/env bash
|
|
|
|
if command -v brew > /dev/null; then
|
|
brew info --json=v1 --installed
|
|
fi
|