Here is the solution with a for
loop. Importantly, it takes the one call to readLines
out of the for loop so that it is not improperly called again and again. Here it is:
fileName <- "up_down.txt" conn <- file(fileName,open="r") linn <-readLines(conn) for (i in 1:length(linn)){ print(linn[i]) } close(conn)