R/p_detectOS.R

Defines functions p_detectOS

Documented in p_detectOS

#' Detects Operating System
#' 
#' Attempts to detect the operating system.
#' Returns: "Windows", "Darwin" on Mac, "Linux", or "SunOS" on Solaris
#' 
#' @export
p_detectOS <- function(){
    Sys.info()[["sysname"]]
}
trinker/pacman documentation built on May 21, 2020, 6:23 a.m.