Uname: Linux web3.us.cloudlogin.co 5.10.226-xeon-hst #2 SMP Fri Sep 13 12:28:44 UTC 2024 x86_64
Software: Apache
PHP version: 8.1.31 [ PHP INFO ] PHP os: Linux
Server Ip: 162.210.96.117
Your Ip: 52.15.201.192
User: edustar (269686) | Group: tty (888)
Safe Mode: OFF
Disable Function:
NONE

name : rbx
#!/usr/bin/env bash

export RBXOPT

rbx_options_trim()
{
  RBXOPT="${RBXOPT## }"
  RBXOPT="${RBXOPT%% }"
}

rbx_options_append()
{
  for param in "$@"
  do
    if [[ " ${RBXOPT} " != *" $param "* ]]
    then
      RBXOPT="${RBXOPT} $param"
    fi
  done
  rbx_options_trim
}

rbx_options_remove()
{
  RBXOPT=" ${RBXOPT} "
  for param in "$@"
  do
    if [[ "${RBXOPT}" == *" $param "* ]]
    then
      RBXOPT="${RBXOPT// $param / }"
    fi
  done
  rbx_options_trim
}

rbx_clean_project_options()
{
  if [[ -n "${PROJECT_RBXOPT}" ]]
  then
    unset PROJECT_RBXOPT
  fi
}
© 2025 GrazzMean