pure-sh-bible
pure-sh-bible copied to clipboard
Hexadecimal to Decimal
In bash:
echo $(( 16#FF ))
255
In pure sh:
echo $(( 0xFF ))
255