.TH PFC 1 pfc\-VERSION .SH NAME pfc \- postfix calculator .SH SYNOPSIS .B pfc .SH DESCRIPTION pfc is an interactive postfix, or reverse Polish notation, calculator. .SH USAGE .SS Keyboard commands .TP .B Shift-q Quit. .TP .B [0..9] Enter a digit into the input buffer. pfc works with floating point numbers so the .B . character is OK as well. .TP .B Backspace Remove a digit from the input buffer. .TP .B Enter Push the number in the input buffer to the stack. .TP .B Shift-j Swap the bottom (most recently pushed) item on the stack with the input buffer. If the input buffer is empty this simply moves the most recently pushed item back into the input buffer. .TP .B Shift-k The same as .BR j . .TP .B Shift-d Delete the contents of the input buffer. .TP .B Shift-c Delete the contents of the input buffer and the stack. .SS Operators .TP .B + Addition. .TP .B - Subtraction. .TP .B * Multiplication. .TP .B / Division. .TP .B ^ Exponentiation. .SS Functions .TP .B dsin Sine function (degrees). .TP .B dcos Cosine function (degrees). .TP .B dtan Tangent function (degrees). .TP .B rsin Sine function (radians). .TP .B rcos Cosine function (radians). .TP .B rtan Tangent function (radians). .TP .B deg Convert radians to degrees. .TP .B rad Convert degrees to radians.