mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-06 06:45:49 +00:00
26 lines
627 B
Plaintext
26 lines
627 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# brew reinstall
|
|
|
|
> Uninstall and then reinstall a formula or cask using the same options it was originally installed with.
|
|
> More information: <https://docs.brew.sh/Manpage#reinstall-options-formulacask->.
|
|
|
|
- Reinstall a formula/cask:
|
|
|
|
`brew reinstall {{formula|cask}}`
|
|
|
|
- Reinstall a formula/cask and show verification and post-install steps:
|
|
|
|
`brew reinstall {{[-v|--verbose]}} {{formula|cask}}`
|
|
|
|
- Make some output more quiet:
|
|
|
|
`brew reinstall {{[-q|--quiet]}} {{formula|cask}}`
|
|
|
|
- Display help:
|
|
|
|
`brew reinstall {{[-h|--help]}}`
|