--------------------------------Linux Guide---------------------------------- by Ingo Blechschmidt (c) 2002 ----------------------------------------------------------------------------- ------------------------- Zeitdiagramm erstellen ------------------------- Sam Jun 30 16:17:52 MEST 2001 ------------------------- Zeit Diagramm HTML last ----------------------------------------------------------------------------- Sie wollen die letzen Logins in eine HTML-Datei schreiben. Dieser Artikel zeigt ein Skript, welches diese Aufgabe erfüllt. ----------------------------------------------------------------------------- Das Skript, siehe <"down/last.sh">Download: --------CODE--------: last.sh #!/bin/bash # last.sh - Generiert aus den Informationen von last ein HTML-Diagramm. # Copyright (C) 2001 Ingo Blechschmidt, # Sam Jun 30 16:20:03 MEST 2001 # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. # # Ingo Blechschmidt # Arberstraße 5 # 86179 Augsburg # E-Mail: iblech@web.de, http://www.way.to/uselinux/ # Tel.: +49 / 821 882955 # # cat < last -n 50

last -n 50>
HEOF # Ersetzen Sie 'Bild' durch den Pfad zu einer Bilddatei, probieren # Sie /opt/kde/share/wallpapers/heat_ripple.jpg last -n 50 -R | grep -v -e boot -e wtmp | \ gawk '{ if ($0) print substr($9,2,2), substr($9,5,2), $0; }' | \ gawk '{ cat < HEOF --------/CODE-------- Passen Sie zunächst das Bild für den Balken an, ändern Sie dazu einfach das Wort Bild durch den Pfad zur Bilddatei, probieren Sie /opt/kde/share/wallpapers/heat_ripple.jpg. Starten Sie dann einfach das Skript in der Form last.sh > /tmp/last.html. ----------------------------------------------------------------------------- ----------------------------------------------------------------------------- This document is distributed under the terms of the GNU Free Documentation License.