X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=fish%2Ffish.c;h=fbb26deff81dfa691e532ae1a7ac987f8bd3d5b4;hp=d256c2b0f0c58776fb8763bb37e9e8566e1e323f;hb=b4c040d30e2677313a892ffe4cde0d53e446da7d;hpb=76f3ea8fb3318966c376bc6fbccbd5a81a9ec564;ds=sidebyside diff --git a/fish/fish.c b/fish/fish.c index d256c2b..fbb26de 100644 --- a/fish/fish.c +++ b/fish/fish.c @@ -239,7 +239,8 @@ script (int prompt) int len, i; if (prompt) - printf ("Welcome to guestfish, the libguestfs filesystem interactive shell for\n" + printf ("\n" + "Welcome to guestfish, the libguestfs filesystem interactive shell for\n" "editing virtual machine filesystems.\n" "\n" "Type: 'help' for help with commands\n" @@ -334,7 +335,7 @@ issue_command (const char *cmd, char *argv[]) } else if (strcasecmp (cmd, "cdrom") == 0) { if (argc != 1) { - fprintf (stderr, "use 'cdrom image' to add a guest cdrom\n"); + fprintf (stderr, "use 'cdrom image' to add a CD-ROM image\n"); return -1; } else @@ -360,9 +361,9 @@ list_builtin_commands (void) printf ("%-20s %s\n", "quit", "quit guestfish"); printf ("%-20s %s\n", - "add", "add a guest image to be examined or modified"); + "add", "add a guest image to be examined or modified"); printf ("%-20s %s\n", - "cdrom", "add a guest CD-ROM image to be examined"); + "cdrom", "add a CD-ROM image to be examined"); printf ("%-20s %s\n", "launch", "launch the subprocess"); } @@ -374,7 +375,7 @@ display_builtin_command (const char *cmd) printf ("add - add a guest image to be examined or modified\n" " add \n"); else if (strcasecmp (cmd, "cdrom") == 0) - printf ("cdrom - add a guest CD-ROM image to be examined\n" + printf ("cdrom - add a CD-ROM image to be examined\n" " cdrom \n"); else if (strcasecmp (cmd, "help") == 0) printf ("help - display a list of commands or help on a command\n"