remove help commands from cliparser todo

This commit is contained in:
tcprst
2020-11-28 16:44:19 -05:00
parent 74613c75bc
commit 7c579ab930
2 changed files with 4 additions and 62 deletions

View File

@@ -251,7 +251,7 @@ print-%: ; @echo $* = $($*)
cliparser:
# Get list of all commands
cat doc/commands.md | grep -e ^\|\` | cut -f 2 -d "\`" | awk '{$$1=$$1};1' > cliparser_all_commands.tmp
cat doc/commands.md | grep -e ^\|\` | grep -v help | cut -f 2 -d "\`" | awk '{$$1=$$1};1' > cliparser_all_commands.tmp
# Get list of cliparserized commands
grep -r CLIParserInit ./client/src/ | cut -f 2 -d "\"" | awk '{$$1=$$1};1' > cliparser_done.tmp
# Determine commands that still need cliparser conversion