The main Bubble source repository. Contains the Bubble API server, the web UI, documentation and utilities. https://getbubblenow.com
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

rdelkeys 166 B

4 yıl önce
12345
  1. #!/bin/bash
  2. KEY_MATCH="${1:?no key match}"
  3. for k in $(echo 'keys *'"""${KEY_MATCH}"""'*' | redis-cli ) ; do
  4. echo "del ${k} => $(echo "del ${k}" | redis-cli)"
  5. done