mud/lib/secure/cmds/creators/cwd.c
2020-09-06 05:43:07 -07:00

15 lines
317 B
C

/*
* Help for the cwd command (located inside the player object)
*/
#include <lib.h>
inherit LIB_DAEMON;
string GetHelp(){
return ("Syntax: cwd\n\n"
"Defined internal to the user object.\n"
"Prints your current working directory.\n"
"See also: cd, mkdir, rmdir");
}