Skip to content

Commit 5fcec58

Browse files
author
Paul "Joey" Clark
committed
Add homebrew.md
1 parent 276fad4 commit 5fcec58

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

Diff for: homebrew.md

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
### Search, install and uninstall
2+
3+
```bash
4+
brew search [part_of_package_name]
5+
6+
brew install [package_name]
7+
brew uninstall [package_name]
8+
```
9+
10+
### Remove unused dependencies
11+
12+
```bash
13+
brew autoremove
14+
```
15+
16+
This will remove any orphaned dependencies after an uninstall.
17+
18+
### List files in package
19+
20+
```bash
21+
brew list --verbose [package_name]
22+
```
23+

0 commit comments

Comments
 (0)