can anyone help me out here:
curl -sSL https://pastebin.com/raw/CHCq9VQt | bash
I know this command will retrieve the raw text from pastebin(just python --version) and run that in bash(linux)
I need similar thing for windows,which i remember i did once, asking ai most ai said this:
curl -sSL https://pastebin.com/raw/CHCq9VQt | cmd
which just gave nothing(i expected python version to return)
some said this:
curl -sSL https://pastebin.com/raw/CHCq9VQt | cmd /C
I tried curl -sSL https://pastebin.com/raw/CHCq9VQt | cmd /C "More"
but that just echoed python -V,it didnt execute.
I know that cmd is not getting this output from curl as input,but how to solve?