static char rcsid[]="$Id: help.C,v 1.3 1995/09/28 02:06:28 wilmesj Exp $";
/* $Log: help.C,v $
 * Revision 1.3  1995/09/28  02:06:28  wilmesj
 * Comments galore.
 *
 * Revision 1.2  1995/09/12  21:44:35  josh
 * *** empty log message ***
 *
 * Revision 1.1  1995/09/10  17:25:06  josh
 * Initial revision
 *
 */

#include <stdio.h>

//::::::::::::::::::::::::::::::: do_help ::::::::::::::::::::::::::::::://
/* Function:  do_help()
 * Purpose:   Online help
 * Returns:   n/a
 * Uses:      stdio.
 */

void do_help(char* help_subject)
{
  if (help_subject)
    printf ("Help requested for subject: %s\n",help_subject);
  else
    printf ("mysh recognizes the following commands:\n");
    printf ("
quit: Quit the shell
help: Here we are :-)
run <command>: Run a program
bg <command>: Run a program in the background
ps: show a list of processes
kill <pid>: Kill process <pid>
\n");
    
}
