Subversion Repositories Kolibri OS

Rev

Rev 7802 | Rev 8827 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2735 Albom 1
 
1668 Nasarus 2
{
3
	{"about",   "  Displays information about Shell\n\r", &cmd_about},
1669 Nasarus 4
	{"alias",   "  Allows the user view the current aliases\n\r", &cmd_alias},
5
	{"cd",      "  Changes current directory. Usage:\n\r    cd \n\r", &cmd_cd},
6
	{"clear",   "  Clears the screen\n\r", &cmd_clear},
7
	{"cp",      "  Copies file\n\r", &cmd_cp},
3245 Albom 8
	{"mv",      "  Moves file\n\r", &cmd_mv},
7802 rgimad 9
	{"ren",     "  Renames file\n\r", &cmd_ren},
10
	{"date",    "  Returns the current date and time\n\r", &cmd_date},
1669 Nasarus 11
	{"echo",    "  Echoes the data to the screen. Usage:\n\r    echo \n\r", &cmd_echo},
12
	{"exit",    "  Exits from Shell\n\r", &cmd_exit},
13
	{"free",    "  Displays total, free and used memory\n\r", &cmd_memory},
2735 Albom 14
	{"help",    "  Gives help on commands. Usage:\n\r    help ;it lists all builtins\n\r    help  ;help on command\n\r", &cmd_help},
1669 Nasarus 15
	{"history", "  Lists used commands\n\r", &cmd_history},
2735 Albom 16
	{"kill",    "  Stops a running process. Usage:\n\r    kill \n\r    kill all\n\r", &cmd_kill},
3247 Albom 17
	{"pkill",   "  Kills all processes by name. Usage:\n\r    pkill \n\r", &cmd_pkill},
8662 turbocat 18
	{"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},
7024 leency 19
	{"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},
1669 Nasarus 20
	{"more",    "  Displays a file data to the screen. Usage:\n\r    more \n\r", &cmd_more},
21
	{"ps",      "  Lists the current processes running\n\r  or shows more info on  and save LASTPID\n\r", &cmd_ps},
6825 siemargl 22
	{"pwd",     "  Displays the name of the working directory\n\r", &cmd_pwd},
1669 Nasarus 23
	{"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},
1807 Albom 24
	{"rm",      "  Removes a file. Usage:\n\r    rm file name>\n\r", &cmd_rm},
1669 Nasarus 25
	{"rmdir",   "  Removes a folder. Usage:\n\r    rmdir \n\r", &cmd_rmdir},
26
	{"shutdown","  Turns off the computer\n\r", &cmd_shutdown},
2735 Albom 27
	{"sleep",   "  Stops the shell for the desired period. Usage:\n\r    sleep 
1669 Nasarus 28
	{"touch",   "  Creates an empty file or updates the time/date stamp on a file. Usage:\n\r    touch \n\r", &cmd_touch},
29
	{"uptime",  "  Displays the uptime\n\r", &cmd_uptime},
1670 Nasarus 30
	{"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},
3245 Albom 31
	{"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},
6825 siemargl 32
};
2735 Albom 33