lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On Thu, Dec 9, 2010 at 6:15 PM, Yehuda Eisenstark
<yudieisenstark@gmail.com> wrote:
=> f = io.popen("/usr/bin/scan", filename)

Easiest way is to concatenate the strings

f = io.popen("/usr/bin/scan " .. filename)

steve d.