Subversion Repositories Kolibri OS

Rev

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

Rev 3247 Rev 6825
Line 14... Line 14...
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", &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", &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},
22
	{"rmdir",   "  Removes a folder. Usage:\n\r    rmdir \n\r", &cmd_rmdir},
22
	{"rmdir",   "  Removes a folder. Usage:\n\r    rmdir \n\r", &cmd_rmdir},
23
	{"shutdown","  Turns off the computer\n\r", &cmd_shutdown},
23
	{"shutdown","  Turns off the computer\n\r", &cmd_shutdown},
24
	{"sleep",   "  Stops the shell for the desired period. Usage:\n\r    sleep 
24
	{"sleep",   "  Stops the shell for the desired period. Usage:\n\r    sleep 
25
	{"touch",   "  Creates an empty file or updates the time/date stamp on a file. Usage:\n\r    touch \n\r", &cmd_touch},
25
	{"touch",   "  Creates an empty file or updates the time/date stamp on a file. Usage:\n\r    touch \n\r", &cmd_touch},
26
	{"uptime",  "  Displays the uptime\n\r", &cmd_uptime},
26
	{"uptime",  "  Displays the uptime\n\r", &cmd_uptime},
27
	{"ver",     "  Displays version. Usage:\n\r    ver ;Shell version\n\r    ver kernel ;version of KolibriOS kernel\n\r    ver cpu ;information about CPU\n\r", &cmd_ver},
27
	{"ver",     "  Displays version. Usage:\n\r    ver ;Shell version\n\r    ver kernel ;version of KolibriOS kernel\n\r    ver cpu ;information about CPU\n\r", &cmd_ver},
28
};
28
	{"waitfor", "  Stops console waiting while process finish. Usage:\n\r    waitfor ;waiting previous started executable LASTPID\n\r    waitfor ;awaiting PID finish\n\r", &cmd_waitfor},
-
 
29
};
29
30