2011-08-22 37 views
3

如果我將Mathematica作爲「數學富吧」運行,什麼變量持有foo和 吧?我猜這是$東西,但沒有找到它。如果在做「math foo bar」,如何獲得Mathematica中的foo和bar?

谷歌搜索告訴我數學接受像-pwpath, -pwfile命令行選項,但我無法找到實際 命令行參數(不是期權)的權利搜索短語。

+1

如果您可以訪問文檔,搜索「命令行」將返回'$ CommandLine'作爲第一次打擊... – acl

回答

8

$CommandLine變量包含命令行參數。

$ math foo bar 
In[1]:= $CommandLine 
Out[1]= {math, foo, bar} 
相關問題