aboutsummaryrefslogtreecommitdiff
path: root/nerv/nerv
blob: 7571659166ad243fc74dd45b092c3e16d0db017f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#! /usr/bin/env luajit
require 'nerv'
print("Greetings")
if #arg < 1 then
    return
end
local script = arg[1]
local script_arg = {}
for i = 2, #arg do
    table.insert(script_arg, arg[i])
end
arg = script_arg
dofile(script)