summary refs log tree commit diff
path: root/bin/man1/bit.1
blob: b91a10e133661f87e9fa7dbe40d4ebb5c8d7e739 (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
53
54
55
.Dd December 30, 2020
.Dt BIT 1
.Os
.
.Sh NAME
.Nm bit
.Nd a calculator
.
.Sh SYNOPSIS
.Nm
.
.Sh DESCRIPTION
.Nm
is an integer calculator.
Its syntax resembles that of C expressions,
with the following changes:
.
.Bl -bullet
.It
Underscores are allowed in integer literals.
.It
The
.Sy 0b
prefix is used for binary literals.
.It
The
.Sy ->
operator is used for arithmetic shift.
.It
The unary
.Sy &
operator is equivalent to
.Sy (1 << x) - 1 .
.It
The postfix operators
.Sy K ,
.Sy M ,
.Sy G ,
.Sy T
are used as constant multipliers.
.It
The postfix operator
.Sy $
is of lowest precedence and is equivalent to
wrapping the preceding expression in parentheses.
.It
Single-letter (lower case) variables
can be assigned.
The variable
.Sy _
stores the previous result.
.El
.
.Sh SEE ALSO
.Xr operator 7