It looks like you are asking how to access the arguments and parameters passed to your computercraft program. From what I can find on interweb, the arguments passed from the computercraft prompt are collected in a list of variational parameters, indicated ...in the outermost area.
Most likely, computercraft scripts access this list of options just like any vanilla lua script. For instance,
local arg1, arg2, arg3 = ...
print(arg1, arg2, arg3)
, arg1, , arg2, .. , argn nil.
, . .
local inputs = {...}
print(select('#', ...) .. " arguments received:")
for i, v in ipairs(inputs) do
print(i, ",", v)
end