pure-sh-bible icon indicating copy to clipboard operation
pure-sh-bible copied to clipboard

Hexadecimal to Decimal

Open JoshuaFern opened this issue 3 years ago • 0 comments

In bash:

echo $(( 16#FF ))
255

In pure sh:

echo $(( 0xFF ))
255

JoshuaFern avatar Nov 25 '21 05:11 JoshuaFern