Rev 85061 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File src/library/base/man/file.show.Rd% Part of the R package, https://www.R-project.org% Copyright 1995-2015 R Core Team% Distributed under GPL 2 or later\name{file.show}\alias{file.show}\title{Display One or More Text Files}\description{Display one or more (plain) text files, in a platform-specific way,typically via a \sQuote{pager}.}\usage{file.show(\dots, header = rep("", nfiles),title = "R Information",delete.file = FALSE, pager = getOption("pager"),encoding = "")}\arguments{\item{\dots}{one or more character vectors containing the names of thefiles to be displayed. Paths will undergo \link{tilde expansion}.}\item{header}{character vector (of the same length as the number of filesspecified in \code{\dots}) giving a header for each file beingdisplayed. Defaults to empty strings.}\item{title}{an overall title for the display. If a single separatewindow is used for the display, \code{title} will be used as the windowtitle. If multiple windows are used, their titles should combine the titleand the file-specific header.}\item{delete.file}{should the files be deleted after display? Usedfor temporary files.}\item{pager}{the pager to be used, see \sQuote{Details}.}\item{encoding}{character string giving the encoding to be assumed forthe file(s).}}\details{This function provides the core of the R help system, but it can beused for other purposes as well, such as \code{\link{page}}.How the pager is implemented is highly system-dependent.The basic Unix version concatenates the files (using the headers) to atemporary file, and displays it in the pager selected by the\code{pager} argument, which is a character vector specifying a systemcommand (a full path or a command found on the \env{PATH}) to run onthe set of files. The \sQuote{factory-fresh} default is to use\file{R_HOME/bin/pager}, which is a shell script running the command-linespecified by the environment variable \env{PAGER} whose default is setat configuration, usually to \command{less}. On a Unix-alike\command{more} is used if \code{pager} is empty.Most GUI systems will use a separate pager window for each file, andlet the user leave it up while \R continues running. The selection ofsuch pagers could either be done using special pager names beingintercepted by lower-level code (such as \code{"internal"} and\code{"console"} on Windows), or by letting \code{pager} be an \Rfunction which will be called with arguments \code{(files, header,title, delete.file)} corresponding to the first four arguments of\code{file.show} and take care of interfacing to the GUI.The \command{R.app} GUI on macOS uses its internal pager irrespectiveof the setting of \code{pager}.Not all implementations will honour \code{delete.file}. Inparticular, using an external pager on Windows does not, as there isno way to know when the external application has finished with thefile.}\author{Ross Ihaka, Brian Ripley.}\seealso{\code{\link{file.exists}}, \code{\link{list.files}}.Text-type \code{\link{help}} and\code{\link{RShowDoc}} call \code{file.show}.Consider \code{\link{getOption}("pdfviewer")} and,e.g., \code{\link{system}} for displaying pdf files.\code{\link{file.edit}}.}\examples{file.show(file.path(R.home("doc"), "COPYRIGHTS"))}\keyword{file}