My preferred algorithms for solving the cube. Basically a 4-Look CFOP plus some bonus material.
See
My preferred algorithms for solving the cube. Basically a 4-Look CFOP plus some bonus material.
See
#!/bin/bash | |
nexus=nexus.example.net:443 | |
java_home=$( java -XshowSettings:properties -version 2>&1 > /dev/null | grep 'java.home' | sed 's/.*= //' ) | |
echo -n | openssl s_client -connect $nexus |\ | |
sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' > /tmp/nexus.crt | |
trap "rm -f /tmp/nexus.crt" 0 2 13 14 |