The main Bubble source repository. Contains the Bubble API server, the web UI, documentation and utilities. https://getbubblenow.com
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

rmembers 334 B

123456789
  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