💾 Archived View for gmi.sbgodin.fr › notes › tools_for_Gemini captured on 2024-08-18 at 17:39:14. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2023-06-14)

-=-=-=-=-=-=-

Tools for Gemini

gemget

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