Subject: Re: how do I get it to print backslash (\)?
To: None <jrivero@cumbrestorreon.com>
From: Robert Elz <kre@munnari.OZ.AU>
List: netbsd-help
Date: 06/13/2003 21:30:14
    Date:        Fri, 6 Jun 2003 13:14:08 -0600 
    From:        jrivero@cumbrestorreon.com
    Message-ID:  <20030613134401.14130.qmail@mail.netbsd.org>

  | How do I print backslash \, such as in the following line:
  | 
  | .Dl 0 > Ic "dir scsi/sd@3:0,\subdirectory\"

Backslash (\) is the *roff escape character (by default, and you will
break the world if you change that, though there is a way to do so).

So, you just need to tell *roff to print the escape character, and
a backslash shall eventually appear (and unlike some other mechanisms,
this one is safe, and survives diversions, macro calls, ...)

Referencing the escape character is done using \e

So
	.Dl 0 > Ic "dir scsi/sd@3:0,\esubdirectory\e"

should work.

kre