我已经指定了变量的路径。
file1 <- "/home/ali/Downloads/data/sample.txt"
我想在系统函数中解析文件路径。
var1 <- system("grep -R 'day' file1 | cut -f1", intern=TRUE)
如何解析file1变量的值?
答案 0 :(得分:1)
使用粘贴来连接字符串:
var <- system(paste("grep -R 'day'", file1, "| cut <etc>"), intern = TRUE)