Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3372 → Rev 3373

/trunk/uspace/app/bdsh/cmds/modules/quit/quit.def
File deleted
/trunk/uspace/app/bdsh/cmds/modules/quit/quit_def.h
0,0 → 1,14
{
"quit",
"Exit the console",
&cmd_quit,
&help_cmd_quit,
-1
},
{
"exit",
NULL,
&cmd_quit,
&help_cmd_quit,
-1
},
/trunk/uspace/app/bdsh/cmds/modules/touch/touch.def
File deleted
/trunk/uspace/app/bdsh/cmds/modules/touch/touch_def.h
0,0 → 1,8
{
"touch",
"Create files or update access times",
&cmd_touch,
&help_cmd_touch,
0
},
 
/trunk/uspace/app/bdsh/cmds/modules/mkdir/mkdir.def
File deleted
/trunk/uspace/app/bdsh/cmds/modules/mkdir/mkdir_def.h
0,0 → 1,16
{
"mkdir",
"Create new directories",
&cmd_mkdir,
&help_cmd_mkdir,
0
},
 
{
"md",
NULL,
&cmd_mkdir,
&help_cmd_mkdir,
0
},
 
/trunk/uspace/app/bdsh/cmds/modules/cat/cat.def
File deleted
/trunk/uspace/app/bdsh/cmds/modules/cat/cat_def.h
0,0 → 1,8
{
"cat",
"Show the contents of a file",
&cmd_cat,
&help_cmd_cat,
0
},
 
/trunk/uspace/app/bdsh/cmds/modules/help/help.def
File deleted
/trunk/uspace/app/bdsh/cmds/modules/help/help_def.h
0,0 → 1,7
{
"help",
"Show help for commands",
&cmd_help,
&help_cmd_help,
0
},
/trunk/uspace/app/bdsh/cmds/modules/pwd/pwd.def
File deleted
/trunk/uspace/app/bdsh/cmds/modules/pwd/pwd_def.h
0,0 → 1,7
{
"pwd",
"Prints the current working directory",
&cmd_pwd,
&help_cmd_pwd,
-1
},
/trunk/uspace/app/bdsh/cmds/modules/ls/ls.def
File deleted
/trunk/uspace/app/bdsh/cmds/modules/ls/ls_def.h
0,0 → 1,16
{
"ls",
"List files and directories",
&cmd_ls,
&help_cmd_ls,
0
},
 
{
"dir",
NULL,
&cmd_ls,
&help_cmd_ls,
0
},
 
/trunk/uspace/app/bdsh/cmds/modules/modules.h
31,14 → 31,14
* are loaded based on what libraries exist on the system. */
 
module_t modules[] = {
#include "help/help.def"
#include "quit/quit.def"
#include "mkdir/mkdir.def"
#include "rm/rm.def"
#include "cat/cat.def"
#include "touch/touch.def"
#include "ls/ls.def"
#include "pwd/pwd.def"
#include "help/help_def.h"
#include "quit/quit_def.h"
#include "mkdir/mkdir_def.h"
#include "rm/rm_def.h"
#include "cat/cat_def.h"
#include "touch/touch_def.h"
#include "ls/ls_def.h"
#include "pwd/pwd_def.h"
{NULL, NULL, NULL, NULL}
};
 
/trunk/uspace/app/bdsh/cmds/modules/rm/rm.def
File deleted
/trunk/uspace/app/bdsh/cmds/modules/rm/rm_def.h
0,0 → 1,16
{
"rm",
"Remove files and directories",
&cmd_rm,
&help_cmd_rm,
0
},
 
{
"del",
NULL,
&cmd_rm,
&help_cmd_rm,
0
},