The R Project SVN R

Rev

Rev 8098 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

\name{sink}
\alias{sink}
\title{Send R Output to a File}
\usage{
sink(file = NULL, append = FALSE)
}
\arguments{
    \item{file}{a character string naming the file to write to, or
        \code{NULL} to stop ``sink''ing.}
    \item{append}{if \code{TRUE}, output will be appended to
        \code{file}; otherwise, it will overwrite the contents of
        \code{file}.}
}
\description{
    Diverts all \R output to \code{file}, overwriting the file unless
    \code{append} is \code{TRUE}.
}
\details{
    Only prompts and error messages continue to appear on the terminal.

    \code{sink()} or \code{sink(file=NULL)} ends the diversion.
}
\examples{
sink("sink-examp.txt")
i <- 1:10
outer(i,i,"*")
sink()
unlink("sink-examp.txt")
}
\keyword{file}