melt: add page (#18943)

This commit is contained in:
Godwin Iheuwa
2025-10-23 08:36:26 +02:00
committed by GitHub
parent 5a0ea8e2c1
commit 0c5d5bba42
+20
View File
@@ -0,0 +1,20 @@
# melt
> Backup and restore Ed25519 SSH keys using memorizable seed phrases.
> More information: <https://github.com/charmbracelet/melt#usage>.
- Generate a seed phrase from an existing Ed25519 private key:
`melt {{~/.ssh/id_ed25519}}`
- Generate a seed phrase from `stdin`:
`{{cat ~/.ssh/id_ed25519}} | melt`
- Restore an SSH key from a seed phrase:
`melt restore {{path/to/key}} --seed "{{seed_phrase}}"`
- Restore an SSH key from a seed phrase via `stdin`:
`{{cat path/to/file}} | melt restore -`