mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-06 18:45:24 +00:00
22 lines
446 B
Plaintext
22 lines
446 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# regedit
|
|
|
|
> Wine registry counterpart of the Microsoft Windows `regedit` service.
|
|
> More information: <https://manned.org/regedit>.
|
|
|
|
- Export a specific registry key and contents to a file:
|
|
|
|
`regedit -E {{path/to/file}} {{path/to/registry_key}}`
|
|
|
|
- Delete a specified registry key:
|
|
|
|
`regedit -D {{path/to/registry_key}}`
|
|
|
|
- Display help:
|
|
|
|
`regedit -?`
|