解析为R中的变量的文件路径

时间:2015-01-27 12:16:12

标签: r string path

我已经指定了变量的路径。

               file1 <- "/home/ali/Downloads/data/sample.txt"

我想在系统函数中解析文件路径。

               var1 <- system("grep -R 'day' file1 | cut -f1", intern=TRUE)

如何解析file1变量的值?

1 个答案:

答案 0 :(得分:1)

使用粘贴来连接字符串:

var <- system(paste("grep -R 'day'", file1, "| cut <etc>"), intern = TRUE)