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
mp;follow=1'>ui-tree: use "sane" isgraph()John Keeping 2015-08-13cgit.h: move stdbool.h from ui-shared.hJohn Keeping 2015-08-13cache.c: fix header orderJohn Keeping 2015-08-13configfile.c: don't include system headers directlyJohn Keeping 2015-08-13Remove redundant includesJohn Keeping 2015-08-13Makefile: include Git's config.mak.unameJohn Keeping 2015-08-13tests: allow shell to be overriddenJohn Keeping 2015-08-13redirect: cleanlinessJason A. Donenfeld 2015-08-13redirect: be more careful for different cgi setupsJason A. Donenfeld 2015-08-12ui-log: fix double countingJohn Keeping 2015-08-12log: allow users to follow a fileJohn Keeping 2015-08-12shared: make cgit_diff_tree_cb publicJohn Keeping 2015-08-12t0110: Chain together using &&Jason A. Donenfeld 2015-08-12about: always ensure page has a trailing slashJason A. Donenfeld 2015-08-12filters: apply HTML escapingLazaros Koromilas 2015-08-12git: update to v2.5.0Christian Hesse 2015-08-12Fix processing of repo.hide and repo.ignoreDaniel Reichelt