mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 00:22:09 +02:00
skate: add page (#10044)
This commit is contained in:
parent
021d2c2867
commit
a34dcffb1a
1 changed files with 36 additions and 0 deletions
36
pages/common/skate.md
Normal file
36
pages/common/skate.md
Normal file
|
@ -0,0 +1,36 @@
|
|||
# skate
|
||||
|
||||
> Simple and powerful key-value store.
|
||||
> More information: <https://github.com/charmbracelet/skate>.
|
||||
|
||||
- Store a key and a value on the default database:
|
||||
|
||||
`skate set "{{key}}" "{{value}}"`
|
||||
|
||||
- Show your keys saved on the default database:
|
||||
|
||||
`skate list`
|
||||
|
||||
- Delete key and value from the default database:
|
||||
|
||||
`skate delete "{{key}}"`
|
||||
|
||||
- Create a new key and value in a new database:
|
||||
|
||||
`skate set "{{key}}"@"{{database_name}}" "{{value}}"`
|
||||
|
||||
- Show your keys saved in a non default database:
|
||||
|
||||
`skate list @"{{database_name}}"`
|
||||
|
||||
- Delete key and value from a specific database:
|
||||
|
||||
`skate delete "{{key}}"@"{{database_name}}"`
|
||||
|
||||
- Show the databases available:
|
||||
|
||||
`skate list-dbs`
|
||||
|
||||
- Delete local db and pull down fresh copy from Charm Cloud:
|
||||
|
||||
`skate reset @"{{database_name}}"`
|
Loading…
Add table
Reference in a new issue