5

Stata提供的一个有用的常见问题解答描述了可以将参数传递给do文件。我的do文件如下所示:

* program.do : Program to fetch information from main dataset
args inname outname

save `outname', emptyok // file to hold results
insheet using `inname', comma clear names case

// a bunch of processing

save `outname', replace

根据常见问题解答,此脚本可以使用do filename.csv result.dta. 当我从 Stata 中运行此命令时,一切正常。但是,该程序很长,因此我想以批处理模式运行它。Stata 有另一个关于批处理模式的常见问题解答。

结合来自这些网页的信息,我在 Unix 提示符下键入以下内容:

$ nohup stata -b do program.do filename.csv result.dta &

Stata 启动,但它终止并出现以下错误:

. save `outname', emptyok // file to hold results
invalid file specification
r(198);

一个小实验告诉我,当我以批处理模式运行程序时,Stata 永远不会接收到这两个参数。这个问题的解决方案是什么?(即在批处理模式下运行时如何将参数传递给do文件?)

4

1 回答 1

5

下面的线程可能会有所帮助:

http://www.stata.com/statalist/archive/2012-09/msg00609.html

在 Windows 中,如果我的程序Test.do是:

args a b
display "`a'" 
display "`b'" 

我可以在 Windows 中以批处理模式运行它,只需键入:

"c:\Stata13\stata.exe" /e do "c:\Scripts\Test.do" Test Script

它会显示(在Stata中):

Test

Script

所以我想知道这是否nohup是阻止你的程序工作的原因。

于 2013-07-21T02:09:25.830 回答