diff options
author | Tj Holowaychuk <tj@vision-media.ca> | 2010-11-16 05:50:26 -0800 |
---|---|---|
committer | Tj Holowaychuk <tj@vision-media.ca> | 2010-11-16 05:50:26 -0800 |
commit | 5397f2b596b5189edbed3e45a42d18f3c99341d6 (patch) | |
tree | 5ba4c22eca292970e1a693f8b019aec982ab920d /Makefile | |
parent | 21dbc6499a538af07f52a41742cf1683f3fc9c23 (diff) | |
download | redis-5397f2b596b5189edbed3e45a42d18f3c99341d6.tar.gz |
Added redis-cli interactive help support
updated via commands.json in redis-doc repo. Currently
use `make src/help.h` to re-generate. The following
are valid from the REPL:
help
help [command]
help [group]
help groups
ex:
help sort
help hash
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -11,4 +11,7 @@ install: dummy $(TARGETS) clean: cd src && $(MAKE) $@ +src/help.h: + @./utils/generate-command-help.rb > $@ + dummy: |