summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo Buehler <tb@cvs.openbsd.org>2017-06-27 16:02:06 +0000
committerTheo Buehler <tb@cvs.openbsd.org>2017-06-27 16:02:06 +0000
commit4bddd9481bb95030bf007bca37aae2807413caab (patch)
tree0686e5ea9b1237301ce93912fe7c1d61ed6e5418
parent16d7e81ae94377d20c9833c37bff4a88fb7eb0a1 (diff)
Remove an extra '\n' from the printf strings fed into disklabel -E
from corsah () mail ! ru
-rw-r--r--share/man/man4/softraid.412
1 files changed, 6 insertions, 6 deletions
diff --git a/share/man/man4/softraid.4 b/share/man/man4/softraid.4
index c2277b7e424..4fa72dd6e67 100644
--- a/share/man/man4/softraid.4
+++ b/share/man/man4/softraid.4
@@ -1,4 +1,4 @@
-.\" $OpenBSD: softraid.4,v 1.41 2015/04/14 19:10:13 miod Exp $
+.\" $OpenBSD: softraid.4,v 1.42 2017/06/27 16:02:05 tb Exp $
.\"
.\" Copyright (c) 2007 Todd T. Fries <todd@OpenBSD.org>
.\" Copyright (c) 2007 Marco Peereboom <marco@OpenBSD.org>
@@ -15,7 +15,7 @@
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.\"
-.Dd $Mdocdate: April 14 2015 $
+.Dd $Mdocdate: June 27 2017 $
.Dt SOFTRAID 4
.Os
.Sh NAME
@@ -128,9 +128,9 @@ Initialize the partition tables of all disks:
.Pp
Now create RAID partitions on all disks:
.Bd -literal -offset indent
-# printf "a\en\en\en\enRAID\enw\enq\en\en" | disklabel -E wd1
-# printf "a\en\en\en\enRAID\enw\enq\en\en" | disklabel -E wd2
-# printf "a\en\en\en\enRAID\enw\enq\en\en" | disklabel -E wd3
+# printf "a\en\en\en\enRAID\enw\enq\en" | disklabel -E wd1
+# printf "a\en\en\en\enRAID\enw\enq\en" | disklabel -E wd2
+# printf "a\en\en\en\enRAID\enw\enq\en" | disklabel -E wd3
.Ed
.Pp
Assemble the RAID volume:
@@ -154,7 +154,7 @@ Initialize the partition table and create a filesystem on the
new RAID volume:
.Bd -literal -offset indent
# fdisk -iy sd0
-# printf "a\en\en\en\en4.2BSD\enw\enq\en\en" | disklabel -E sd0
+# printf "a\en\en\en\en4.2BSD\enw\enq\en" | disklabel -E sd0
# newfs /dev/rsd0a
.Ed
.Pp