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.
 
 
 
 

6 satır
144 B

  1. #!/bin/bash
  2. KEY_MATCH="${1}"
  3. for k in $(echo 'keys *'"""${KEY_MATCH}"""'*' | redis-cli ) ; do
  4. echo "$k => $(echo "get $k" | redis-cli)"
  5. done