diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2010-03-26 19:30:42 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2010-03-26 19:30:42 +0000 |
commit | 0e101a71f9c747c1bf5f853b2faba8c94458bab9 (patch) | |
tree | b1f8223f0d93941122cb0666f5713cfccbf9a879 /usr.sbin/ppp | |
parent | a5a79a7af92e40132a0b0e09c9fc0eaa57985b9c (diff) |
dispense with some wacky escape sequences;
Diffstat (limited to 'usr.sbin/ppp')
-rw-r--r-- | usr.sbin/ppp/pppctl/pppctl.8 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/ppp/pppctl/pppctl.8 b/usr.sbin/ppp/pppctl/pppctl.8 index 8f6729c0483..64a6b4566d4 100644 --- a/usr.sbin/ppp/pppctl/pppctl.8 +++ b/usr.sbin/ppp/pppctl/pppctl.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: pppctl.8,v 1.15 2007/05/31 19:20:27 jmc Exp $ +.\" $OpenBSD: pppctl.8,v 1.16 2010/03/26 19:30:40 jmc Exp $ .\" .\" Copyright (c) 1997 Brian Somers <brian@Awfulhak.org> .\" All rights reserved. @@ -24,7 +24,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.Dd $Mdocdate: May 31 2007 $ +.Dd $Mdocdate: March 26 2010 $ .Dt PPPCTL 8 .Os .Sh NAME @@ -194,13 +194,13 @@ To connect to the Internet: .Bd -literal -offset indent #! /bin/sh test $# -eq 0 && time=300 || time=$1 -exec pppctl /var/run/internet set timeout $time\\; dial +exec pppctl /var/run/internet set timeout $time\e; dial .Ed .Pp To disconnect: .Bd -literal -offset indent #! /bin/sh -exec pppctl /var/run/internet set timeout 300\\; close +exec pppctl /var/run/internet set timeout 300\e; close .Ed .Pp To check if the line is up: |