Articles in Category "Administration"

 Thumbnails aus allen Bildern im aktuellen Verzeichnis …

… erstellen und daraus HTML mit einer 3-spaltigen Tabelle machen.

An Introduction to the VI Text Editor

A Google/YouTube Series of Screencasts about VI (classic version).

Postfix „postqueue -p“ (print queue) nett formatieren

ist ganz einfach: postqueue -p |    perl -ne ‚       /^[A-F09]+/&&do{          $a=<>; $b=<>;          chomp($_,$a,$b);          $a=~s/[\(\)]//g;          $b=~s/ //g;          $msg=$_.“ to: „.$b.“ message:“.$a;          $msg=~s/[\t ]+/ /g;          print „$msg\n“;       }    ‚