diff options
author | Igor Sobrado <sobrado@cvs.openbsd.org> | 2014-02-01 22:47:50 +0000 |
---|---|---|
committer | Igor Sobrado <sobrado@cvs.openbsd.org> | 2014-02-01 22:47:50 +0000 |
commit | ce1e3df96b88e81009e61a09190ca3c7ad62d3e2 (patch) | |
tree | 5ff5eca3e2aa5542b41256dec1ea8000797222fa /usr.bin | |
parent | f9f87bac203011e3c54cf28c7087d10d34450def (diff) |
fix an example; users column at who(1) has a minimum width of eight characters,
not sixteen characters.
problem found by jmc@
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/cut/cut.1 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/cut/cut.1 b/usr.bin/cut/cut.1 index f026872b261..7d282b84e26 100644 --- a/usr.bin/cut/cut.1 +++ b/usr.bin/cut/cut.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: cut.1,v 1.19 2012/06/10 06:22:56 jmc Exp $ +.\" $OpenBSD: cut.1,v 1.20 2014/02/01 22:47:49 sobrado Exp $ .\" $NetBSD: cut.1,v 1.6 1995/10/02 20:19:26 jtc Exp $ .\" .\" Copyright (c) 1989, 1990, 1993 @@ -33,7 +33,7 @@ .\" .\" @(#)cut.1 8.1 (Berkeley) 6/6/93 .\" -.Dd $Mdocdate: June 10 2012 $ +.Dd $Mdocdate: February 1 2014 $ .Dt CUT 1 .Os .Sh NAME @@ -125,7 +125,7 @@ pairs: .Pp Show the names and login times of logged in users: .Pp -.Dl "$ who | cut -c 1-16,26-38" +.Dl "$ who | cut -c 1-8,18-30" .Sh SEE ALSO .Xr paste 1 .Sh STANDARDS |