mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-09 22:46:36 +00:00
20 lines
520 B
Plaintext
20 lines
520 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# vagrant global-status
|
|
|
|
> Display the state of all Vagrant machines on the system.
|
|
> The info is based on a cache, which may become stale and require pruning.
|
|
> See also: `vagrant`, `vagrant status`.
|
|
> More information: <https://developer.hashicorp.com/vagrant/docs/cli/global-status>.
|
|
|
|
- Display the state of all machines:
|
|
|
|
`vagrant global-status`
|
|
|
|
- Prune any stale entries from the output:
|
|
|
|
`vagrant global-status --prune`
|