vboxmanage-*, exiqgrep: update page (#11604)

* exiqgrep: update page

* vboxmanage-*: update page
pull/23/head
Lena 2023-11-30 09:27:59 +01:00 committed by GitHub
parent 36b7544540
commit 908c9366c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 9 additions and 9 deletions

View File

@ -1,6 +1,6 @@
# vboxmanage-clonevm
> Creates a clone of an existing virtual machine (VM).
> Create a clone of an existing virtual machine (VM).
> More information: <https://www.virtualbox.org/manual/ch08.html#vboxmanage-clonevm>.
- Clone the specified VM:
@ -15,6 +15,6 @@
`VBoxManage clonevm {{vm_name}} --basefolder {{path/to/directory}}`
- Store the cloned VM in VirtualBox:
- Register the cloned VM in VirtualBox:
`VBoxManage clonevm {{vm_name}} --register`

View File

@ -3,7 +3,7 @@
> Export virtual machines to a virtual appliance (ISO) or a cloud service.
> More information: <https://www.virtualbox.org/manual/ch08.html#vboxmanage-export>.
- Specify the target OVF file:
- Specify the target OVA file:
`VBoxManage export --output {{path/to/filename.ova}}`
@ -19,6 +19,6 @@
`VBoxManage export --manifest`
- Specify description to the VM:
- Specify a description of the VM:
`VBoxManage export --description "{{description-info}}"`
`VBoxManage export --description "{{vm_description}}"`

View File

@ -1,6 +1,6 @@
# vboxmanage-import
> Imports a virtual machine (VM) previously exported or created.
> Import a previously exported virtual machine (VM).
> More information: <https://www.virtualbox.org/manual/ch08.html#vboxmanage-import>.
- Import a VM from an OVF or OVA file:

View File

@ -7,7 +7,7 @@
`VBoxManage unregistervm {{uuid|vm_name}}`
- Delete hard disk image files, all saved state files, VM logs, XML VM machine files:
- Delete hard disk image files, all saved state files, VM logs, and XML VM machine files:
`VBoxManage unregistervm {{uuid|vm_name}} --delete`

View File

@ -1,13 +1,13 @@
# exiqgrep
> The `exiqgrep` utility is a Perl script offering possibilities to `grep` in the Exim queue output.
> Perl script offering possibilities to `grep` in the Exim queue output.
> More information: <https://www.exim.org/exim-html-current/doc/html/spec_html/ch-exim_utilities.html>.
- Match the sender address using a case-insensitive search:
`exiqgrep -f '<{{email@somedomain.com}}>'`
- Match the sender address, and display message IDs only:
- Match the sender address and display message IDs only:
`exiqgrep -i -f '<{{email@somedomain.com}}>'`