The main Bubble source repository. Contains the Bubble API server, the web UI, documentation and utilities. https://getbubblenow.com
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 

10 Zeilen
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