I am executing the following command in R :
system("ls ")
I need to store the output of the above command in some R variable. Is there a way to do the same??
Use intern=TRUE:
intern=TRUE
a <- system("ls ", intern = TRUE)