this post was submitted on 25 Mar 2024
1 points (100.0% liked)

Debian operating system

2640 readers
4 users here now

Debian is a free operating system (OS) for your computer. An operating system is the set of basic programs and utilities that make your computer run. Debian provides more than a pure OS: it comes with over 59000 packages, precompiled software bundled up in a nice format for easy installation on your machine.

founded 4 years ago
MODERATORS
 

#!/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

no comments (yet)
sorted by: hot top controversial new old
there doesn't seem to be anything here