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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
|
//po4a: entry man manual
////
SPDX-License-Identifier: GPL-2.0-or-later
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
Copyright (c) 2024 Robin Jarry
////
= bits(1)
:doctype: manpage
:man manual: User Commands
:man source: util-linux {release-version}
:page-layout: base
:command: bits
== NAME
bits - convert bit masks from/to various formats
== SYNOPSIS
*bits* [*-h*] [*-V*] [*-w* _<NUM>_] [_<MODE>_] [_<MASK_OR_LIST>_...]
== DESCRIPTION
The *bits* utility converts bit masks into various formats. It supports
combining multiple masks together using bitwise operations.
== POSITIONAL ARGUMENTS
_<MASK_OR_LIST>_::
A set of bits specified as a hexadecimal mask value (e.g. _0xeec2_) or as
a comma-separated list of bit IDs.
If no argument is specified, the sets of bits will be read from standard input;
one group per line.
Consecutive ids can be compressed as ranges (e.g. _5,6,7,8,9,10_ -> _5-10_).
Optionally, if an argument starts with a comma, it will be parsed as a single
hexadecimal mask split in 32bit groups (e.g. _,00014000,00000000,00020000_ ->
_17,78,80_).
By default all groups will be OR'ed together. If a group has one of the
following prefixes, it will be combined with the resulting mask using
a different binary operation:
**&**__<MASK_OR_LIST>__::
The group will be combined with a binary AND operation. I.e. all bits that are
set to 1 in the group AND the combined groups so far will be preserved to 1.
All other bits will be reset to 0.
**^**__<MASK_OR_LIST>__::
The group will be combined with a binary XOR operation. I.e. all bits that are
set to 1 in the group AND to 0 the combined groups so far (or the other way
around) will be set to 1. Bits that are both to 1 or both to 0 will be reset to
0.
**~**__<MASK_OR_LIST>__::
All bits set to 1 in the group will be cleared (reset to 0) in the combined
groups so far.
== OPTIONS
*-w* __<NUM>__, *--width* __<NUM>__::
Maximum number of bits in the masks handled by *bits* (default __8192__). Any
bit larger than this number will be truncated.
include::man-common/help-version.adoc[]
== CONVERSION MODE
One of the following conversion modes can be specified. If not specified, it
defaults to *-m*, *--mask*.
*-m*, *--mask*::
Print the combined args as a hexadecimal mask value (default).
*-g*, *--grouped-mask*::
Print the combined args as a hexadecimal mask value in 32bit comma separated
groups.
*-b*, *--binary*::
Print the combined args as a binary mask value.
*-l*, *--list*::
Print the combined args as a list of bit IDs. Consecutive IDs are compressed as
ranges.
== EXAMPLES
....
~$ bits --mask 4,5-8 16,30
0x400101f0
~$ bits --list 0xeec2
1,6,7,9-11,13-15
~$ bits --binary 4,5-8 16,30
0b100_0000_0000_0001_0000_0001_1111_0000
~$ bits --list ,00300000,03000000,30000003
0,1,28,29,56,57,84,85
~$ bits --list 1,2,3,4 ~3-10
1,2
~$ bits --list 1,2,3,4 ^3-10
1,2,5-10
~$ bits --grouped-mask 2,22,74,79
8400,00000000,00400004
~$ bits --width 64 --list 2,22,74,79
2,22
....
== AUTHORS
Robin Jarry.
include::man-common/bugreports.adoc[]
include::man-common/footer.adoc[]
ifdef::translation[]
include::man-common/translation.adoc[]
endif::[]
|