1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-23 09:35:24 +02:00

Fix lint issues.

This commit is contained in:
Michishige Kaito 2017-03-09 16:30:47 +00:00 committed by Agniva De Sarker
parent 972e5889e1
commit c0d16b2f7e

View file

@ -1,26 +1,26 @@
# tomb
> Manage the creation and access of encrypted storage files
> Manage the creation and access of encrypted storage files.
- Create a 100Mb tomb, lock it with a key, and mount it at /media/secret
- Create a 100Mb tomb, lock it with a key, and mount it at /media/secret:
`tomb dig -s 100 {{secret.tomb}}`
`tomb forge {{secret.tomb.key}}`
`tomb lock {{secret.tomb}} -k {{secret.tomb.key}}`
`tomb open {{secret.tomb}} -k {{secret.tomb.key}}`
- List all open tombs
- List all open tombs:
`tomb list`
- Close a tomb.
- Close a tomb:
`tomb close {{secret.tomb}}`
- Open a local tomb using a remote key
- Open a local tomb using a remote key:
`ssh {{user@server.net}} 'cat {{secret.tomb.key}}' | tomb open {{secret.tomb}} -k -`
- Open a remote tomb with a local key
- Open a remote tomb with a local key:
`gpd -d {{secret.tomb.key}} | ssh {{user@server.net}} tomb open {{secret.tomb}} -k cleartext --unsafe`