The main Bubble source repository. Contains the Bubble API server, the web UI, documentation and utilities. https://getbubblenow.com
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

10 wiersze
334 B

  1. #!/bin/bash
  2. #
  3. # Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
  4. #
  5. KEY_MATCH="${1}"
  6. SEP="${2:- }"
  7. for k in $(echo 'keys *'"""${KEY_MATCH}"""'*' | redis-cli) ; do
  8. echo "$k => $(echo "smembers $k" | redis-cli | tr '\n' ''"${SEP}"'')"
  9. done