mirror of
https://github.com/notwa/rc
synced 2024-11-05 06:29:02 -08:00
5 lines
87 B
Bash
Executable file
5 lines
87 B
Bash
Executable file
#!/bin/zsh
|
|
unconv() {
|
|
printf "%08x\n" $(((0x$1^3)&0x00FFFFFF+0x4F920000))
|
|
}
|
|
unconv $1
|