Changes in uspace/app/bdsh/cmds/modules/help/help.c [25c1b2c:36ab7c7] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/cmds/modules/help/help.c
r25c1b2c r36ab7c7 1 1 /* 2 2 * Copyright (c) 2008 Tim Post 3 * Copyright (c) 2011 Martin Sucha4 3 * All rights reserved. 5 4 * … … 31 30 #include <stdlib.h> 32 31 #include <str.h> 33 #include <fmtutil.h>34 32 35 33 #include "config.h" … … 130 128 static void help_survival(void) 131 129 { 132 print_wrapped_console( 133 "Don't panic!\n\n" 130 printf("Don't panic!\n\n"); 134 131 135 132 printf("This is Bdsh, the Brain dead shell, currently " 136 133 "the primary user interface to HelenOS. Bdsh allows you to enter " 137 134 "commands and supports history (Up, Down arrow keys), " 138 135 "line editing (Left Arrow, Right Arrow, Home, End, Backspace), " 139 136 "selection (Shift + movement keys), copy and paste (Ctrl-C, " 140 "Ctrl-V), similar to common desktop environments.\n\n" 137 "Ctrl-V), similar to common desktop environments.\n\n"); 141 138 142 139 printf("The most basic filesystem commands are Bdsh builtins. Type " 143 140 "'help commands' [Enter] to see the list of Bdsh builtin commands. " 144 141 "Other commands are external executables located in the /app and " 145 142 "/srv directories. Type 'ls /app' [Enter] and 'ls /srv' [Enter] " 146 143 "to see their list. You can execute an external command simply " 147 "by entering its name (e.g. type 'tetris' [Enter]).\n\n" 144 "by entering its name (e.g. type 'tetris' [Enter]).\n\n"); 148 145 149 150 "these using the F1-F11 keys.\n\n" 146 printf("HelenOS has virtual consoles (VCs). You can switch between " 147 "these using the F1-F11 keys.\n\n"); 151 148 152 149 printf("This is but a small glimpse of what you can do with HelenOS. " 153 150 "To learn more please point your browser to the HelenOS User's " 154 "Guide: http://trac.helenos.org/wiki/UsersGuide\n\n", 155 ALIGN_LEFT); 151 "Guide: http://trac.helenos.org/trac.fcgi/wiki/UsersGuide\n\n"); 156 152 } 157 153
Note:
See TracChangeset
for help on using the changeset viewer.