From: tb Date: Tue, 27 Jun 2017 16:02:05 +0000 (+0000) Subject: Remove an extra '\n' from the printf strings fed into disklabel -E X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=a18f8f138d66d71709a763a21c256f001437ffef;p=openbsd Remove an extra '\n' from the printf strings fed into disklabel -E from corsah () mail ! ru --- 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 .\" Copyright (c) 2007 Marco Peereboom @@ -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