Done the usage help thing, with no actuall good help for now
This commit is contained in:
parent
b785f16e65
commit
31bdc665b3
33
lexicon
33
lexicon
@ -2,6 +2,39 @@
|
||||
|
||||
if not arg[1] then print("no argument, try again") return end
|
||||
|
||||
for _, v in pairs(arg) do
|
||||
if v == "-h"
|
||||
or v == "--help"
|
||||
or v == "--usage"
|
||||
or v == "--howdo"
|
||||
or v == "--how"
|
||||
or arg[1] == "help"
|
||||
or arg[1] == "how"
|
||||
or arg[1] == "howdo"
|
||||
then please_help = true end
|
||||
end
|
||||
|
||||
--USAGE COMMANDS
|
||||
if please_help then
|
||||
if arg[1] == "all"
|
||||
or arg[1] == "a" then
|
||||
print("all\n\tshows all words in heonian")
|
||||
return
|
||||
end
|
||||
if arg[1] == "search"
|
||||
or arg[1] == "s" then
|
||||
print("search <query>\n\tsearches all words and shows only those that return to string.find()")
|
||||
return
|
||||
end
|
||||
if arg[1] == "transcript"
|
||||
or arg[1] == "tr" then
|
||||
print("transcript <word>\n\ttranscripts the word to heonian script")
|
||||
return
|
||||
end
|
||||
print("all\n\tshows all words in heonian\nsearch <query>\n\tsearches all words and shows only those that return to string.find()\ntranscript <word>\n\ttranscripts the word to heonian script")
|
||||
return
|
||||
end
|
||||
|
||||
require "R2H2"
|
||||
require "color"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user