LinuxCommandLibrary

skate

personal key value store

TLDR

Store a key and a value on the default database

$ skate set "[key]" "[value]"
copy


Show your keys saved on the default database
$ skate list
copy


Delete key and value from the default database
$ skate delete "[key]"
copy


Create a new key and value in a new database
$ skate set "[key]"@"[database_name]" "[value]"
copy


Show your keys saved in a non default database
$ skate list @"[database_name]"
copy


Delete key and value from a specific database
$ skate delete "[key]"@"[database_name]"
copy


Show the databases available
$ skate list-dbs
copy


Delete local db and pull down fresh copy from Charm Cloud
$ skate reset @"[database_name]"
copy

Help

Skate, a personal key value store. 

Usage:
   [flags] 
   [command] 

Available Commands:
  delete      Delete a key with an optional @ db. 
  get         Get a value for a key with an optional @ db. 
  help        Help about any command 
  link        Link multiple machines to your Charm account 
  list        List key value pairs with an optional @ db. 
  reset       Delete local db and pull down fresh copy from Charm Cloud. 
  set         Set a value for a key with an optional @ db. 
  sync        Sync local db with latest Charm Cloud db. 

Flags:
  -h, --help      help for this command 
  -v, --version   version for this command 

Use " [command] --help" for more information about a command. 

Copied to clipboard