Subversion Repositories SvarDOS

Rev

Rev 385 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 385 Rev 387
Line 4... Line 4...
4
 
4
 
5
static int cmd_mkdir(struct cmd_funcparam *p) {
5
static int cmd_mkdir(struct cmd_funcparam *p) {
6
  const char *dname = p->argv[0];
6
  const char *dname = p->argv[0];
7
  unsigned short err = 0;
7
  unsigned short err = 0;
8
 
8
 
9
  if ((p->argc == 1) && (imatch(p->argv[0], "/?"))) {
9
  if (cmd_ishlp(p)) {
10
    outputnl("Creates a directory");
10
    outputnl("Creates a directory");
11
    outputnl("");
11
    outputnl("");
12
    outputnl("MKDIR [drive:]path");
12
    outputnl("MKDIR [drive:]path");
13
    outputnl("MD [drive:]path");
13
    outputnl("MD [drive:]path");
14
    return(-1);
14
    return(-1);