|
On Thu, Dec 9, 2010 at 10:15 AM, Yehuda Eisenstark wrote:
> f = io.popen("/usr/bin/scan", filename)
> That obviously does not work. How do I pass the "filename" variable to theMaybe try:
> /usr/bin/scan script?
f=io.popen("/usr/bin/scan " .. filename)(Note the space after "scan")
You might need to do some additional quoting if your filename
contains spaces, etc.
- Jeff