View Single Post
Old 11-10-2009, 03:14 AM   #109
hansel
JSR FFD2
hansel can extract oil from cheesehansel can extract oil from cheesehansel can extract oil from cheesehansel can extract oil from cheesehansel can extract oil from cheesehansel can extract oil from cheesehansel can extract oil from cheesehansel can extract oil from cheese
 
hansel's Avatar
 
Posts: 305
Karma: 1045
Join Date: Aug 2008
Location: Rotterdam, Netherlands, Europe, Sol 3
Device: iliad
Quote:
Originally Posted by ericshliao View Post
In C, I use FILE *p = popen(). I wonder...
It's called io.popen()
Code:
  local f = io.popen("ls -l")        -- runs command
  local buf = f:read("*a")          -- read output of command
  f:close()
  print(buf)
hansel is offline   Reply With Quote