blob: 28e4d5c89fcb7c0653fd85bf8db0c1ee95fd9b72 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
.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 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 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 k
The same as
.BR j .
.TP
.B d
Delete the contents of the input buffer.
.SS Operators
.TP
.B +
Addition.
.TP
.B -
Subtraction.
.TP
.B *
Multiplication.
.TP
.B /
Division.
.TP
.B ^
Exponentiation.
|