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

26 lines
640 B
Plaintext
Raw Normal View History

#!/usr/bin/env zsh
2021-07-29 00:37:35 -07:00
# YES_ZSH
# YES_BASH
# YES_DASH
2021-09-23 06:48:05 -07:00
# YES_ASH
# though technically compatible with other shells,
# extra functionality is through zsh's extended arithmetic functions.
2021-07-29 00:37:35 -07:00
2021-07-30 17:57:08 -07:00
hex() { ### @-
2021-08-01 07:33:28 -07:00
### perform arithmetic using the shell and display the result as
### an unsigned 32-bit integer in hexadecimal.
### see also [`arith`](#arith) and [`bin`](#bin).
###
### ```
### $ hex 0x221EA8-0x212020
### 0000FE88
### ```
###
### **NOTE:** there also exists a hex(1) program provided by
### the *basez* package that i don't use.
2021-07-29 00:37:35 -07:00
printf "%08X\n" "$(($@))"
}
[ -n "${preload+-}" ] || hex "$@"