我有一些代码可以在.txt
内的R
文件上添加文字,如下所示:
write("puts 'hellow world '", file = "C:\\Ruby22-x64\\bin\\elt.rb",
append = TRUE, sep = " ")
setwd("C:/Ruby22-x64/bin/")
test<-system("ruby elt.rb",intern=TRUE) # this will return "hellow world" from ruby interpreter
我的问题是:在追加.rb
文件并运行它后,如何删除&#34; puts&#39; hellow world&#39;&#34; .rb
文件中的字符串,并将其返回到初始状态?
我试图寻找许多功能,但无法找到任何可以撤消write
功能的功能。