Subversion Repositories Kolibri OS

Rev

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

Rev 6825 Rev 7024
Line 11... Line 11...
11
	{"free",    "  Displays total, free and used memory\n\r", &cmd_memory},
11
	{"free",    "  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
	{"history", "  Lists used commands\n\r", &cmd_history},	
13
	{"history", "  Lists used commands\n\r", &cmd_history},	
14
	{"kill",    "  Stops a running process. Usage:\n\r    kill \n\r    kill all\n\r", &cmd_kill},
14
	{"kill",    "  Stops a running process. Usage:\n\r    kill \n\r    kill all\n\r", &cmd_kill},
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
	{"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    ls -1 ;lists the files in a single column\n\r", &cmd_ls},
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
	{"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},
17
	{"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},
18
	{"ps",      "  Lists the current processes running\n\r  or shows more info on  and save LASTPID\n\r", &cmd_ps},
18
	{"ps",      "  Lists the current processes running\n\r  or shows more info on  and save LASTPID\n\r", &cmd_ps},
19
	{"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},
20
	{"reboot",  "  Reboots the computer or KolibriOS kernel. Usage:\n\r    reboot ;reboot a PC\n\r    reboot kernel ;reboot the KolibriOS kernel\n\r", &cmd_reboot},
20
	{"reboot",  "  Reboots the computer or KolibriOS kernel. Usage:\n\r    reboot ;reboot a PC\n\r    reboot kernel ;reboot the KolibriOS kernel\n\r", &cmd_reboot},
21
	{"rm",      "  Removes a file. Usage:\n\r    rm file name>\n\r", &cmd_rm},
21
	{"rm",      "  Removes a file. Usage:\n\r    rm file name>\n\r", &cmd_rm},