1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-05-18 09:53:22 -07:00
rc/sh/bin
Connor Olding d5f3f14d72 merge compatibility lines
RIP meaningful last-modified dates
2024-03-26 15:08:14 -07:00

22 lines
737 B
Bash
Executable File

#!/usr/bin/env zsh
# YES_ZSH YES_BASH YES_DASH YES_ASH
# though technically compatible with other shells,
# extra functionality is through zsh's extended arithmetic functions.
bin() { ### @-
### 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
### ```
local a="$(($@))"
a="$(( (((((((((((((a + 0x0FFFFF80) & 0x1000007F) + 0x00FFFFC0) & 0x1100003F) + 0x000FFFE0) & 0x1110001F) + 0x0000FFF0) & 0x1111000F) + 0x00000FF8) & 0x11111007) + 0x000000FC) & 0x11111103) + 0x0000000E) & 0x11111111 ))"
printf "%08X\n" "$a"
}
[ -n "${preload+-}" ] || bin "$@"