Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/bdsh/cmds/modules/help/help.c

    r25c1b2c r36ab7c7  
    11/*
    22 * Copyright (c) 2008 Tim Post
    3  * Copyright (c) 2011 Martin Sucha
    43 * All rights reserved.
    54 *
     
    3130#include <stdlib.h>
    3231#include <str.h>
    33 #include <fmtutil.h>
    3432
    3533#include "config.h"
     
    130128static void help_survival(void)
    131129{
    132         print_wrapped_console(
    133             "Don't panic!\n\n"
     130        printf("Don't panic!\n\n");
    134131
    135             "This is Bdsh, the Brain dead shell, currently "
     132        printf("This is Bdsh, the Brain dead shell, currently "
    136133            "the primary user interface to HelenOS. Bdsh allows you to enter "
    137134            "commands and supports history (Up, Down arrow keys), "
    138135            "line editing (Left Arrow, Right Arrow, Home, End, Backspace), "
    139136            "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");
    141138
    142             "The most basic filesystem commands are Bdsh builtins. Type "
     139        printf("The most basic filesystem commands are Bdsh builtins. Type "
    143140            "'help commands' [Enter] to see the list of Bdsh builtin commands. "
    144141            "Other commands are external executables located in the /app and "
    145142            "/srv directories. Type 'ls /app' [Enter] and 'ls /srv' [Enter] "
    146143            "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");
    148145
    149             "HelenOS has virtual consoles (VCs). You can switch between "
    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");
    151148
    152             "This is but a small glimpse of what you can do with HelenOS. "
     149        printf("This is but a small glimpse of what you can do with HelenOS. "
    153150            "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");
    156152}
    157153
Note: See TracChangeset for help on using the changeset viewer.