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

23 lines
504 B
Nim

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