| Server IP : 164.138.27.172 / Your IP : 216.73.216.143 Web Server : nginx/1.27.4 System : Linux cookingdream 6.8.0-124-generic #124-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 13:00:45 UTC 2026 x86_64 User : www-adm ( 1001) PHP Version : 8.3.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /home/jonasn/.rvm/src/rvm/ |
Upload File : |
#!/usr/bin/env bash
echo "Linking: OSX binaries"
ssh rvm@ssh.rvm.io -C ./site/bin/rvm-link-binaries.sh osx 10.9
echo "Processing: remote - all"
ssh rvm@ssh.rvm.io -C ./site/bin/rvm-list-binary.sh remote | sort > config/remote
for type in md5 sha512
do
ssh rvm@ssh.rvm.io ./site/bin/rvm-list-binary.sh $type | while IFS="=" read name value
do
echo "Processing: $type - $name"
if \grep "^$name=" config/$type >/dev/null
then sed -i.bak -e 's#^'"$name"'=.*$#'"$name=$value"'#' config/$type
else echo "$name=$value" >> config/$type
fi
done
LANG=C sort -n config/$type > config/$type.new
mv -f config/$type.new config/$type
rm config/$type.bak
done