Skip to content

Instantly share code, notes, and snippets.

@ZeccaLehn
Last active August 29, 2015 14:22
Show Gist options
  • Save ZeccaLehn/d711c43bfc9aaf6214ea to your computer and use it in GitHub Desktop.
Save ZeccaLehn/d711c43bfc9aaf6214ea to your computer and use it in GitHub Desktop.
Sink and Print from a text file in R
sink("file.txt", append = T,
split = FALSE) # Direct text to "file.txt"
print("hello world")
print("hello world again")
shell.exec("file.txt") # Open text file in editor
unlink("file.txt") # Closes sink and now prints all to console
closeAllConnections()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment