63 lines
1.4 KiB
Lua
Executable File
63 lines
1.4 KiB
Lua
Executable File
#!/usr/bin/env lua
|
|
|
|
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"
|
|
|
|
adjustTableSizes = require "output_sizes"
|
|
printOutputTable = require "output_word"
|
|
|
|
showList = require "show_list"
|
|
searchList = require "search_list"
|
|
|
|
words = dofile("words.lua")
|
|
|
|
if arg[1] == "all" then
|
|
showList()
|
|
return
|
|
end
|
|
if arg[1] == "search" then
|
|
if arg[2] then searchList(arg[2])
|
|
else print("insert query") end
|
|
return
|
|
end
|
|
if arg[1] == "transcript" then
|
|
if arg[2] then print(convertToHeonian(arg[2]))
|
|
else print("no string found") end
|
|
return
|
|
end
|