summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed T. Crigler <crigler@users.sourceforge.net>2004-08-25 23:38:17 +0000
committerNed T. Crigler <crigler@users.sourceforge.net>2004-08-25 23:38:17 +0000
commit43f172d0ed73b9964d8b8645a460644ab07bbce7 (patch)
treee8332d87f3d742194c480d30503e01638613a11d
parent21d386d004e02481f7266f5b921bcecef6533371 (diff)
Updated the man page to use \- everywhere for the dashes in dtach's
command-line options.
-rw-r--r--dtach.116
1 files changed, 8 insertions, 8 deletions
diff --git a/dtach.1 b/dtach.1
index 6502ba3..cb2d4f6 100644
--- a/dtach.1
+++ b/dtach.1
@@ -2,16 +2,16 @@
.SH NAME
dtach \- simple program that emulates the detach feature of screen.
.SH SYNOPSIS
-.B dtach -a
+.B dtach \-a
.I <socket> <options>
.br
-.B dtach -A
+.B dtach \-A
.I <socket> <options> <command...>
.br
-.B dtach -c
+.B dtach \-c
.I <socket> <options> <command...>
.br
-.B dtach -n
+.B dtach \-n
.I <socket> <options> <command...>
.SH DESCRIPTION
@@ -159,7 +159,7 @@ and suspend processing disabled. A socket is created in the /tmp directory
for the session.
.nf
- $ dtach -c /tmp/foozle -Ez bash
+ $ dtach \-c /tmp/foozle \-Ez bash
.fi
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.
.nf
- $ dtach -A /tmp/foozle -z bash
+ $ dtach \-A /tmp/foozle \-z bash
.fi
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.
.nf
- $ dtach -a /tmp/foozle -r winch
+ $ dtach \-a /tmp/foozle \-r winch
.fi
The following example creates a new session and sets the default redraw method
@@ -184,7 +184,7 @@ for the session to the
redraw method.
.nf
- $ dtach -c /tmp/foozle -r winch bash
+ $ dtach \-c /tmp/foozle \-r winch bash
.fi
.PP