Subversion Repositories Kolibri OS

Rev

Rev 1670 | Rev 1807 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1670 Rev 1673
Line 9... Line 9...
9
	{"echo",    "  Echoes the data to the screen. Usage:\n\r    echo \n\r", &cmd_echo},
9
	{"echo",    "  Echoes the data to the screen. Usage:\n\r    echo \n\r", &cmd_echo},
10
	{"exit",    "  Exits from Shell\n\r", &cmd_exit},
10
	{"exit",    "  Exits from Shell\n\r", &cmd_exit},
11
	{"memory",  "  Displays total, free and used memory\n\r", &cmd_memory},
11
	{"memory",  "  Displays total, free and used memory\n\r", &cmd_memory},
12
	{"help",    "  Gives help on commands. Usage:\n\r    help ;it lists all builtins\n\r    help  ;help on command\n\r", &cmd_help},
12
	{"help",    "  Gives help on commands. Usage:\n\r    help ;it lists all builtins\n\r    help  ;help on command\n\r", &cmd_help},
13
	{"kill",    "  Stops a running process. Usage:\n\r    kill \n\r", &cmd_kill},
13
	{"kill",    "  Stops a running process. Usage:\n\r    kill \n\r", &cmd_kill},
-
 
14
	{"killall", "  Kills all running processes\n\r", &cmd_killall},
14
	{"ls",      "  Lists the files in a directory. Usage:\n\r    ls ;lists the files in current directory\n\r    ls  ;lists the files at specified folder\n\r", &cmd_ls},
15
	{"ls",      "  Lists the files in a directory. Usage:\n\r    ls ;lists the files in current directory\n\r    ls  ;lists the files at specified folder\n\r", &cmd_ls},
15
	{"mkdir",   "  Makes directory. Usage:\n\r    mkdir  ;creates the folder in working directory\n\r    mkdir  ;create folder by specified path\n\r", &cmd_mkdir},
16
	{"mkdir",   "  Makes directory. Usage:\n\r    mkdir  ;creates the folder in working directory\n\r    mkdir  ;create folder by specified path\n\r", &cmd_mkdir},
16
	{"more",    "  Displays a file data to the screen. Usage:\n\r    more \n\r", &cmd_more},
17
	{"more",    "  Displays a file data to the screen. Usage:\n\r    more \n\r", &cmd_more},
17
	{"ps",      "  Lists the current processes running\n\r", &cmd_ps},
18
	{"ps",      "  Lists the current processes running\n\r", &cmd_ps},
18
	{"pwd",     "  Displays the name of the working directory\n\r", &cmd_pwd},
19
	{"pwd",     "  Displays the name of the working directory\n\r", &cmd_pwd},