#!/bin/bash
#Requires: html2text, wget
wget -q -O - https://www.debian.org/releases/ | html2text > /tmp/debian.txt
cat <<EOF
$(grep ‘* Debian.*[Rr]elease’ /tmp/debian.txt)
$(grep ‘current testing’ /tmp/debian.txt)
This system:
$(lsb_release -a)
EOF
rm -f /tmp/debian.txt
sleep 60
exit 0
You must log in or register to comment.