Nothing
#' Show disk usage for a target path
#'
#' @param target alias/bucket to list
#' @param flags optional additional flags
#' @inherit mc return
#' @details for more help, run `mc_du("-h")`
#' @examplesIf interactive()
#'
#' # create a new bucket
#' mc_mb("play/minioclient-test")
#'
#' # no disk usage on new bucket
#' mc_du("play/minioclient-test")
#'
#' # clean up
#' mc_rb("play/minioclient-test")
#'
#' @export
mc_du <- function(target, flags="") {
cmd <- paste("du", flags, target)
cmd <- gsub("\\s+", " ", cmd)
mc(cmd)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.