(view source code of hex2dec_php.bat as plain text)
@ECHO OFF
:: https://www.robvanderwoude.com/batchphp.php
:: Usage: "hex2dec 0xF" or "hex2dec F" both return "15"
SETLOCAL
SET Hex=%~1
IF /I "%Hex:~0,2%"=="0x" SET Hex=%Hex:~2%
PHP -r print(hexdec(%Hex%));
ENDLOCAL
page last modified: 2024-04-16; loaded in 0.0133 seconds