What are the ways to Login Jenkins using Command line ?
Ways to Login Jenkins using Command line & Way to trigger Jenkins job using Command line or script Wget Note: If you are using wget 1.11, you might need to use the following options: wget –auth-no-challenge –http-user=user –http-password=apiToken http://jenkins.yourcompany.com/job/your_job/build?token=TOKEN With wget 1.10.x the following is enough (but will not work with 1.11.x) : wget http://user:apiToken@jenkins.yourcompany.com/job/your_job/build?token=TOKEN … Read more