[alt.msdos.programmer] Make a simple command-line calculator with 4DOS

jrv@gradient.cis.upenn.edu (JR VanMechelen) (03/22/91)

While it's not bc, I just realized that you can make a quick and dirty
commmand-line calculator using 4dos with the following alias:

	alias bc=`echo %@eval[%&]%`

To use:  
	c:\> bc 3 + 4 + 5
        12
	c:\> _ 

Anybody have any really clever aliases?

JR