(view source code of pow_php.bat as plain text)
:: https://www.robvanderwoude.com/batchphp.php
:: Returns first argument raised to the power of second argument
:: Usage: "Pow 2 3" returns "8", "Pow 3 2" returns "9"
@IF NOT "%~2"=="" PHP -r "print(pow(%1,%2));"
page last modified: 2024-04-16; loaded in 0.0047 seconds