This is a read-only snapshot of
the ComputerCraft forums
, taken in April 2020.
ComputerCraft
→
Ask a Pro
Other Ways To Run Programs In Scripts Other Then Shell.run()
Started by elfin8er, 14 December 2012 - 08:10 AM
elfin8er
#1
132 posts
Posted 14 December 2012 - 09:10 AM
To make a long story short, I can't use shell.run() to run a program in a script, so I was wondering if there are any other commands I can use to run programs in a script.
Kingdaro
#2
1688 posts
Location
'MURICA
Posted 14 December 2012 - 09:14 AM
You can use dofile("program"), or loadstring("program")()
Lyqyd
#3
8543 posts
Posted 14 December 2012 - 10:32 AM
There's also os.run. Why won't shell.run work?