Updated the man page to use \- everywhere for the dashes in dtach's

command-line options.
This commit is contained in:
Ned T. Crigler 2004-08-25 23:38:17 +00:00
parent 21d386d004
commit 43f172d0ed
1 changed files with 8 additions and 8 deletions

16
dtach.1
View File

@ -2,16 +2,16 @@
.SH NAME .SH NAME
dtach \- simple program that emulates the detach feature of screen. dtach \- simple program that emulates the detach feature of screen.
.SH SYNOPSIS .SH SYNOPSIS
.B dtach -a .B dtach \-a
.I <socket> <options> .I <socket> <options>
.br .br
.B dtach -A .B dtach \-A
.I <socket> <options> <command...> .I <socket> <options> <command...>
.br .br
.B dtach -c .B dtach \-c
.I <socket> <options> <command...> .I <socket> <options> <command...>
.br .br
.B dtach -n .B dtach \-n
.I <socket> <options> <command...> .I <socket> <options> <command...>
.SH DESCRIPTION .SH DESCRIPTION
@ -159,7 +159,7 @@ and suspend processing disabled. A socket is created in the /tmp directory
for the session. for the session.
.nf .nf
$ dtach -c /tmp/foozle -Ez bash $ dtach \-c /tmp/foozle \-Ez bash
.fi .fi
The following example attaches to the /tmp/foozle session if it exists, and if The following example attaches to the /tmp/foozle session if it exists, and if
@ -167,7 +167,7 @@ not, creates a new session using /tmp/foozle as the socket for the session.
Processing of the suspend character is also disabled for the attach instance. Processing of the suspend character is also disabled for the attach instance.
.nf .nf
$ dtach -A /tmp/foozle -z bash $ dtach \-A /tmp/foozle \-z bash
.fi .fi
The following example attaches to the /tmp/foozle session, using the The following example attaches to the /tmp/foozle session, using the
@ -175,7 +175,7 @@ The following example attaches to the /tmp/foozle session, using the
redraw method to redraw the screen. redraw method to redraw the screen.
.nf .nf
$ dtach -a /tmp/foozle -r winch $ dtach \-a /tmp/foozle \-r winch
.fi .fi
The following example creates a new session and sets the default redraw method The following example creates a new session and sets the default redraw method
@ -184,7 +184,7 @@ for the session to the
redraw method. redraw method.
.nf .nf
$ dtach -c /tmp/foozle -r winch bash $ dtach \-c /tmp/foozle \-r winch bash
.fi .fi
.PP .PP