|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T h
Length: 530 (0x212) Types: TextFile Names: »help.c«
└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit └─⟦3658e588a⟧ »EurOpenD3/mail/mh/mh-6.7.tar.Z« └─⟦c75e36ecb⟧ └─⟦this⟧ »mh-6.7/miscellany/less-5.0/help.c«
#include "less.h" /* * Display some help. * Just invoke another "less" to display the help file. * * {{ This makes this function very simple, and makes changing the * help file very easy, but it may present difficulties on * (non-Unix) systems which do not supply the "system()" function. }} */ public void help() { char cmd[FILENAME+100]; sprintf(cmd, "-less -m '-PmHELP -- ?eEND -- Press g to see it again:Press RETURN for more., or q when done ' %s", HELPFILE); lsystem(cmd); error("End of help"); }