mirror of
https://github.com/chubin/cheat.sh.git
synced 2024-11-22 18:17:38 +03:00
8 lines
128 B
Python
8 lines
128 B
Python
import sys
|
|
import redis
|
|
REDIS = redis.Redis(host='localhost', port=6379, db=0)
|
|
|
|
for key in sys.argv[1:]:
|
|
REDIS.delete(key)
|
|
|