Wichtig: Hier sind NUR Demonstrationsscripts, d. h. es geht nicht um Performance!

Bei den folgenden zwei Scripts gnomping und tgping.pl bietet sich für den täglichen Einsatz nmap an.

Finden der IPs in einem Netzwerk: nmap -v -sP 192.168.0.1/24

Bash

gnomping: Findet erreichbare/nicht-erreichbare IPs innerhalb des Netzwerkes.
backup: Legt Backups mit Hilfe von Hardlinks an.

Perl

tgping.pl: Findet erreichbare/nicht-erreichbare IPs innerhalb des Netzwerkes. Das ist die Luxusausgabe von gnomping als Perl-Script.



Script-Schnipsel: Umwandeln von PDF in ASCII-Text für Windows (z. B. für meinen Reader)

Umwandlung von pdf in html ohne schnick-schnack
for i in "*.pdf"; do pdftohtml -i -nomerge -p -c -noframes "$i" ; done

Umwandlung von html in reinen text
for i in "*.html"; do w3m -dump "$i" >> "$i.txt" ; done

Codierung auf windows anpassen für reader
for i in "*.txt" ; do iconv -c -f UTF8 -t ISO_8859-15 "$i" ; done\\\\