workshit/src/safe-redis-cli/saferediscli.nim

23 lines
504 B
Nim
Raw Normal View History

2015-06-13 08:34:17 +00:00
import commandeer, sockets, redis
commandline:
option hostname, string, "hostname", "h"
option optPort, int, "port", "p"
option admin, bool, "admin", ""
exitoption "help", "h",
2015-06-13 08:34:17 +00:00
"Usage: redis-cli [--admin|--help|--hostname=<string>|--port=<int>]"
errormsg "Invalid options: please read help."
2015-06-13 08:34:17 +00:00
if hostname == nil:
hostname = "127.0.0.1"
2015-06-13 08:34:17 +00:00
if optPort == 0:
optPort = 6379
echo "hostname: ", hostname
echo "port: ", optPort
var conn = redis.open(hostname, optPort.Port)
conn.quit()