我的問題是:如何與R腳本中調用Linux終端代碼
我怎麼能說一個Linux終端一個[R腳本裏面?
我知道這可能是一個愚蠢的問題......我的R代碼裏面是在這裏:
download.file('https://some.dir,
destfile = '/home/myfile.grb2',method='auto',quiet = FALSE,
mode="wb", cacheOK = TRUE)
下載後,我不得不使用從終端代碼文件轉換...但我需要這個是自動的。該轉換器的代碼是這樣的:
source activate ncl_stable
cd /home
ncl_convert2nc myfile.grb2
谷歌搜索我看到Linux終端使用C++。我知道有一個軟件包可以運行C++代碼到R,Rcpp,但它的工作方式與linux終端類似嗎?
你可以使用['system'](https://stat.ethz.ch/R-manual/R-devel/library/base/html/system.html)功能 –