Dumps page in a terminal
#!/bin/bash if [ "$1" == "" ] then echo "USAGE: $0 capsule.address /the/url/file.gmi (without gemini:// at the start)" exit 1 fi server="$1" link="$2" request="$server$link" echo "gemini://$request" echo -ne "gemini://$request\r\n" | ncat --ssl $server 1965