BITS(1) | Dienstprogramme für Benutzer | BITS(1) |
BEZEICHNUNG¶
bits - Bitmasken aus oder in verschiedene Formate umwandeln
ÜBERSICHT¶
bits [-h] [-V] [-w <ZAHL>] [<MODUS>] [<MASKE_ODER_LISTE> …]
BESCHREIBUNG¶
Das Dienstprogramm bits wandelt Bitmasken verschiedener Formate ineinander um. Es unterstützt mittels bitweiser Operationen die Kombination mehrerer Bitmasken
POSITIONALE ARGUMENTE¶
<MASKE_ODER_LISTE>
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:
&<MASKE_ODER_LISTE>
^<MASKE_ODER_LISTE>
~<MASKE_ODER_LISTE>
OPTIONEN¶
-w <ZAHL>, --width <ZAHL>
-h, --help
-V, --version
UMWANDLUNGSMODUS¶
Einer der folgenden Umwandlungsmodi kann angegeben werden. Falls nichts angegeben ist, wird -m, --mask als Vorgabe verwendet.
-m, --mask
-g, --grouped-mask
-b, --binary
-l, --list
BEISPIELE¶
~$ 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
AUTOREN¶
Robin Jarry.
FEHLER MELDEN¶
Nutzen Sie zum Melden von Fehlern das Fehlererfassungssystem <https://github.com/util-linux/util-linux/issues>.
VERFÜGBARKEIT¶
Der Befehl bits ist Teil des Pakets util-linux, welches aus dem Linux-Kernel-Archiv <https://www.kernel.org/pub/linux/utils/util-linux/> heruntergeladen werden kann.
2025-08-12 | util-linux 2.41.1 |