openvt: Document the -f switch
authorMichael Schutte <michi@uiae.at>
Sun, 22 Jun 2008 08:38:42 +0000 (10:38 +0200)
committerAlexey Gladkov <legion@altlinux.org>
Sun, 22 Jun 2008 16:46:58 +0000 (20:46 +0400)
-f forces a VT to be opened without checking whether it already is in
use.  The option works as intended, but is not documented anywhere
except for a message printed if a VT is found to be busy.

Signed-off-by: Michael Schutte <michi@uiae.at>
Signed-off-by: Alexey Gladkov <legion@altlinux.org>
man/man1/openvt.1
src/openvt.c

index 610ad34..8a37094 100644 (file)
@@ -21,6 +21,9 @@ specified then the environment variable $SHELL is used.
 Use the given VT number and not the first available. Note you
 must have write access to the supplied VT for this to work.
 .TP
+.I "\-f"
+Force opening a VT without checking whether it is already in use.
+.TP
 .I "\-e"
 Directly execute the given command, without forking.
 This option is meant for use in
index e8f35a6..f7eced2 100644 (file)
@@ -327,7 +327,7 @@ got_vtno:
 void usage(int stat)
 {
    fprintf(stderr, _(
-     "Usage: openvt [-c vtnumber] [-l] [-u] [-s] [-v] [-w] -- command_line\n"));
+     "Usage: openvt [-c vtnumber] [-f] [-l] [-u] [-s] [-v] [-w] -- command_line\n"));
    exit (stat);
 }