R/cmd-perl.R

#' Perl is a highly capable, feature-rich programming language with over 36
#' years of development.
#'
#' @param ... `r rd_dots("perl")`.
#' @param perl `r rd_cmd("perl")`.
#' @seealso
#' - <https://www.perl.org/>
#'
#' `r rd_seealso()`
#' @inherit exec return
#' @family command
#' @export
perl <- make_command(
    "perl",
    function(..., perl = NULL) {
        assert_string(perl, allow_empty = FALSE, allow_null = TRUE)
        Perl$new(cmd = perl, ...)
    }
)

Perl <- R6Class(
    "Perl",
    inherit = Command,
    private = list(
        alias = function() "perl",
        setup_help_params = function() "--help"
    )
)

Try the blit package in your browser

Any scripts or data that you put into this service are public.

blit documentation built on April 12, 2025, 1:16 a.m.