7 lines
184 B
Bash
Executable file
7 lines
184 B
Bash
Executable file
#!/bin/sh
|
|
#ddev-generated
|
|
## Description: Run redis-cli inside the redis container
|
|
## Usage: redis-flush
|
|
## Example: "redis-flush"
|
|
|
|
redis-cli -a redis --no-auth-warning FLUSHALL ASYNC
|