mirror of
https://github.com/notwa/rc
synced 2024-10-31 17:04:35 -07:00
25 lines
640 B
Bash
Executable file
25 lines
640 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.
|
|
|
|
hex() { ### @-
|
|
### 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.
|
|
printf "%08X\n" "$(($@))"
|
|
}
|
|
|
|
[ -n "${preload+-}" ] || hex "$@"
|