💾 Archived View for gemini.susa.net › cgi-bin › serverinfo captured on 2023-07-22 at 16:47:13. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2023-07-10)

🚧 View Differences

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

Server Info

Mem info

CPU info

CGI Vars

Generated by: /home/gemini/content/cgi-bin/serverinfo

#!/bin/bash

MEMINFO=$(cat /proc/meminfo|grep Mem)
CPUINFO=$(cat /proc/cpuinfo |egrep 'vendor|MHz|model name|cache size')

echo -ne "20 text/gemini\r\n"

cat <<EOGEMINI
# Server Info

## Mem info
${MEMINFO}

## CPU info
${CPUINFO}

## CGI Vars




### Generated by: ${0}
EOGEMINI

echo '```'
cat ${0}
echo '```'