On Fri, 3 Apr 2015, Giovanni Mondo wrote:
? open '/Users/msdev/gretl/ISTAT_consumi_2012.csv'
(failed, no such file or directory).
If your command line literally contains those single quotes, that's
the source of the problem. With a filename that doesn't contain
spaces, don't put any quotes around it; but if it contains spaces,
wrap it in double quotes:
open "/spacey path/to/my datafile.gdt"
Otherwise gretl will be looking for a file whose name actually begins
with a single quote, "'".
Allin Cottrell