Locates a program in the PATH environment variable
Returns the complete filename and path of a program in the PATH environment variable.
This is a wrapper for Sys.which
, and may be deprecated in the future.
findProgram( name, includename=FALSE )
name |
name of a program to locate |
includename |
boolean: if true, include the filename in the path returned, otherwise just the directory. |
A string containing the location of the program. NULL is returned if the program is not located.
Alex Couture-Beil, Vancouver Island University, Nanaimo BC
local(envir=.PBSmodEnv,expr={ print(list( gcc = findProgram( "gcc" ), notepad = findProgram( "notepad" ), R = findProgram( "R", includename=TRUE ) )) })
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.