[net.micro.pc] Microsoft Unix Incompatibilities

tw (05/07/83)

Relay-Version:version B 3/9/83; site harpo.UUCP
Message-ID:<1014@hp-pcd.UUCP>
Date:Sat, 7-May-83 00:26:38 EDT

#R:cvl:-24200:hp-pcd:13600003:000:841
hp-pcd!tw    May  6 11:23:00 1983

/***** hp-pcd:net.micro / tw / 11:16 am  May  6, 1983*/
Actually, you can use '/' in pathnames on DOS 2.0 instead of '\' if
you want, either works.  The only problem is that '/' is the switch
character used to indicate options to most programs.  What you need
to do is put the following line in your CONFIG.SYS file:

switchar = -

which will make the switch character a '-', same as unix, and will
also eliminate any problems with '/'.  I.e. instead of saying:

format /v    you now say    format -v

This makes things much less confusing for us Unix users.

Tw

NOTE:  if you put the above switchar in your config.sys, be warned that it
takes effect immediately, so if you plan to do something like
	shell = xyz /f
with some flag later in the same config.sys, it won't work.  You have to make
that	shell = xyz -f
instead.
/* ---------- */