mirror of
https://github.com/fleetdm/fleet
synced 2026-05-05 22:39:17 +00:00
Fix carve documentation flag order (#605)
Update the docs to be consistent with stricter flag parsing in 3.10. Fixes #602
This commit is contained in:
parent
90e82a62b3
commit
fd13b3a72c
1 changed files with 2 additions and 2 deletions
|
|
@ -632,13 +632,13 @@ Contents of carves are returned as .tar archives, and compressed if that option
|
|||
To download the contents of a carve with ID 3, use
|
||||
|
||||
```
|
||||
fleetctl get carve 3 --outfile carve.tar
|
||||
fleetctl get carve --outfile carve.tar 3
|
||||
```
|
||||
|
||||
It can also be useful to pipe the results directly into the tar command for unarchiving:
|
||||
|
||||
```
|
||||
fleetctl get carve 3 --stdout | tar -x
|
||||
fleetctl get carve --stdout 3 | tar -x
|
||||
```
|
||||
|
||||
#### Expiration
|
||||
|
|
|
|||
Loading…
Reference in a new issue