Information panel at a train station
Information panel at a train station
A Happy Family
Debian Sarge
Windows 2000 professional
(crosspost)
Sealed Windows 2000 Advanced Server floppy disks
I can't help looking through the window on the way to work
bash script that displays debian releases
#!/bin/bash #Requires: html2text, wget wget -q -O - https://www.debian.org/releases/ [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