CAT.EXE (DL8MBT, 08.01.94) CAT ist ein kleines Utility, das ganz praktisch sein kann, wenn man von der Box aus was bin„res ansehen will oder wenn das Ende eines langen Files von Interesse ist. Ein typischer Fall ist bei eingestelltem tracelevel 0 das Ende des Syslogs nach einem Absturz, um den letzten Befehl zu sehen. Habe daher folgendes in der AUTOEXEC.BAT: cat -t 50 log\syslog.bcm > lastlog.001 Bei Aufruf von CAT /? kommt folgende Helpseite: ------ This program is useful for showing and concatenation of files in some different modes including filename wildcard expansion. 7.1.94 DL8MBT CAT [-?] [-hlmtw] [] [] -? shows this help screen -h hex dump output (for binary files, may be combined with -m) -m 'more' function, stops at screen end (t=top, q=quit) -t 'tail' types the last lines of a text file (default 20 lines) -w 'word count' counts lines, words, chars of one or more text files only tail: number of lines shown from the end of the file (max 100) may contain any filename wildcard expression like '*.c' CAT defaults to read from STDIN and writes to STDOUT. Thus it is possible to use CAT as a filter like 'dir | cat -t 5' or to redirect the standard input like 'cat > filename'. ------ Hinweis: Die -m Option ist von der Box aus nicht nutzbar, weil sie auf eine Eingabe wartet. Vielleicht kann jemand was damit anfangen.