Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
Ayuda
Iniciar sesión
bubblev
/
bubble
Seguir
9
Destacar
0
Fork
0
Código
Incidencias
0
Pull Requests
0
Lanzamientos
130
Wiki
Actividad
Explorar el Código
add rkeys and rdelkeys scripts
tags/v0.12.2
Jonathan Cobb
hace 4 años
padre
e8ab421e41
commit
2307003210
Se han
modificado 3 ficheros
con
13 adiciones
y
1 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+5
-0
bin/rdelkeys
+5
-0
bin/rkeys
+3
-1
bubble-server/src/main/resources/ansible/bubble_scripts.txt
+ 5
- 0
bin/rdelkeys
Ver fichero
@@ -0,0 +1,5 @@
#!/bin/bash
PREFIX="${1:?no prefix}"
for k in $(echo 'keys '"""${PREFIX}"""'*' | redis-cli ) ; do
echo "del ${k} => $(echo "del ${k}" | redis-cli)"
done
+ 5
- 0
bin/rkeys
Ver fichero
@@ -0,0 +1,5 @@
#!/bin/bash
PREFIX="${1}"
for k in $(echo 'keys '"""${PREFIX}"""'*' | redis-cli ) ; do
echo "$k => $(echo "get $k" | redis-cli)"
done
+ 3
- 1
bubble-server/src/main/resources/ansible/bubble_scripts.txt
Ver fichero
@@ -15,4 +15,6 @@ bencrypt
bdecrypt
list_bubble_databases
cleanup_bubble_databases
install_packer.sh
install_packer.sh
rkeys
rdelkeys
Escribir
Vista previa
Cargando…
Cancelar
Guardar