1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-06-26 09:07:12 -07:00
rc/sh/bin

25 lines
743 B
Plaintext
Raw Normal View History

2021-07-29 00:37:35 -07:00
#!/usr/bin/env zsh
# YES_ZSH
# YES_BASH
# YES_DASH
2021-09-23 06:48:05 -07:00
# YES_ASH
2021-07-29 00:37:35 -07:00
2021-08-01 07:33:28 -07:00
# though technically compatible with other shells,
# extra functionality is through zsh's extended arithmetic functions.
bin() { ### @-
2021-08-01 07:33:28 -07:00
### perform arithmetic using the shell and display the result as
### an unsigned 8-bit integer in binary.
### see also [`arith`](#arith) and [`hex`](#hex).
###
### ```
### $ bin 123
### 01111011
### ```
2021-07-29 00:37:35 -07:00
local a="$(($@))"
a="$(( (((((((((((((a + 0x0FFFFF80) & 0x1000007F) + 0x00FFFFC0) & 0x1100003F) + 0x000FFFE0) & 0x1110001F) + 0x0000FFF0) & 0x1111000F) + 0x00000FF8) & 0x11111007) + 0x000000FC) & 0x11111103) + 0x0000000E) & 0x11111111 ))"
2021-07-29 00:37:35 -07:00
printf "%08X\n" "$a"
}
[ -n "${preload+-}" ] || bin "$@"