I created python venv(virtual environment) . And I ran blew command to get pylint result.
>pylint --errors-only --output-format=pylint2junit.JunitReporter ./code/XXX/TTTT.py > PylintTest.xml
Then I want to get the status code of pylint.
>echo $?
$?
It does not return the code.
To get response of previous command you executed, you can run -
echo %ERRORLEVEL%