view bin/luarocks @ 5353:6b53d28db718

<oren> ` echo \'welcome | sed -e "s/th/\xce\xb8/g;s/ch/\xcf\x87/g;s/q/\xce\xba\xcf\x85/;s/w/\xce\xbf\xcf\x85/g;s/W/\xce\x9f\xcf\x85/g;y/ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz/\xce\x91\xce\x92\xce\x9a\xce\x94\xce\x95\xce\xa6\xce\x93\xce\x97\xce\x99\xce\xaa\xce\x9a\xce\x9b\xce\x9c\xce\x9d\xce\x9f\xce\xa0\xce\xa8\xce\xa1\xce\xa3\xce\xa4\xce\xa5\xce\x92\xce\xa9\xce\x9e\xce\x97\xce\x96\xce\xb1\xce\xb2\xce\xba\xce\xb4\xce\xb5\xcf\x86\xce\xb3\xce\xb7\xce\xb9\xcf\x8a\xce\xba\xce\xbb\xce\xbc\xce\xbd\xce\xbf\xcf\x80\xcf\x88\xcf\x81\xcf\x83\xcf\x84\xcf\x85\xce\xb2\xcf\x89\xce\xbe\xce\xb7\xce\xb6/"\' >bin/\xce\xbf\xcf\x85\xce\xb5\xce\xbb\xce\xba\xce\xbf\xce\xbc\xce\xb5
author HackBot
date Mon, 04 May 2015 22:58:48 +0000
parents d137f631bad5
children
line wrap: on
line source

#!/hackenv/bin/lua
package.path = [[/hackenv/share/lua/5.2//?.lua;/hackenv/share/lua/5.2//?/init.lua;]]..package.path

local command_line = require("luarocks.command_line")

program_name = "luarocks"
program_description = "LuaRocks main command-line interface"

commands = {}
commands.help = require("luarocks.help")
commands.pack = require("luarocks.pack")
commands.unpack = require("luarocks.unpack")
commands.build = require("luarocks.build")
commands.install = require("luarocks.install")
commands.search = require("luarocks.search")
commands.list = require("luarocks.list")
commands.remove = require("luarocks.remove")
commands.make = require("luarocks.make")
commands.download = require("luarocks.download")
commands.path = require("luarocks.path")
commands.show = require("luarocks.show")
commands.new_version = require("luarocks.new_version")
commands.lint = require("luarocks.lint")
commands.purge = require("luarocks.purge")

command_line.run_command(...)