Tag: command line tool

  • Introducing JCli – A command line tool for creating Java applications

    Imagine you could create your java applications from command line using a tool. Just like you would use ng tool for Angular and npm for node js. This would save a lot of developer time. With this in mind I experimented with creating a command line tool called “jcli” (java client) using Java and picocli…

  • How to create a command line tool using Java?

    How to create a command line tool using Java?

    Java applications can be run using command line , but you can pass only arguments . Based on the position of the arguments , you can retrieve them in your application and code your logic. What if you can pass flags to your java application and let it execute logic based on that. Like in…