Tag: 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…