Subversion Repositories Kolibri OS

Rev

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

Rev 8827 Rev 9173
Line 16... Line 16...
16
	{"kfetch",  "  Prints logo and information about system.\n\r", &cmd_kfetch},
16
	{"kfetch",  "  Prints logo and information about system.\n\r", &cmd_kfetch},
17
	{"kill",    "  Stops a running process. Usage:\n\r    kill \n\r    kill all\n\r", &cmd_kill},
17
	{"kill",    "  Stops a running process. Usage:\n\r    kill \n\r    kill all\n\r", &cmd_kill},
18
	{"pkill",   "  Kills all processes by name. Usage:\n\r    pkill \n\r", &cmd_pkill},
18
	{"pkill",   "  Kills all processes by name. Usage:\n\r    pkill \n\r", &cmd_pkill},
19
	{"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},
19
	{"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},
20
	{"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},
20
	{"mkdir",   "  Create directory and parent directories as needed. Usage:\n\r    mkdir \n\r", &cmd_mkdir},
21
	{"more",    "  Displays a file data to the screen. Usage:\n\r    more \n\r", &cmd_more},
21
	{"more",    "  Displays a file data to the screen. Usage:\n\r    more \n\r", &cmd_more},
22
	{"ps",      "  Lists the current processes running\n\r  or shows more info on  and save LASTPID\n\r", &cmd_ps},
22
	{"ps",      "  Lists the current processes running\n\r  or shows more info on  and save LASTPID\n\r", &cmd_ps},
23
	{"pwd",     "  Displays the name of the working directory\n\r", &cmd_pwd},
23
	{"pwd",     "  Displays the name of the working directory\n\r", &cmd_pwd},
24
	{"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},
24
	{"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},
25
	{"rm",      "  Removes a file. Usage:\n\r    rm file name>\n\r", &cmd_rm},
25
	{"rm",      "  Removes a file. Usage:\n\r    rm file name>\n\r", &cmd_rm},
26
	{"rmdir",   "  Removes a folder. Usage:\n\r    rmdir \n\r", &cmd_rmdir},
26
	{"rmdir",   "  Removes a folder. Usage:\n\r    rmdir \n\r", &cmd_rmdir},