CLI suggestions
See original GitHub issueHi,
- I would prefer options without arguments : -v for validation instead -a “validate”
- Currently, we need to -cp <dependencies.jar> to make the CLI work, I find easier to use a uber jar (see maven code bellow). Maybe could you provide an uber jar version of cron-utils or at least add this is your pom ? Cheers, Bertrand
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>com.cronutils.cli.CronUtilsCLI</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
mvn assembly:assembly -DdescriptorId=jar-with-dependencies
Issue Analytics
- State:
- Created 6 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
Ubuntu command-line suggestion - auto completion
I'm trying to ask, i want a command-line suggestion when i am writing a command or attempt to write (if i need to...
Read more >cli-suggestion - npm
CLI Suggestion. NPM version · Build Status · Coveralls Status. It's just a simple module to return a command suggestion based on a...
Read more >Command completion - AWS Command Line Interface
Enter a parameter and press Tab to display a suggested list of resource values. This feature is available only in the AWS CLI...
Read more >cli/suggestions.go at main · urfave/cli - GitHub
A simple, fast, and fun package for building command line apps in Go - cli/suggestions.go at main · urfave/cli.
Read more >A few suggestions for creating command line interfaces
Torsten Seemann wrote a good article on creating CLI. This blog post adds a few more suggestions. 1. Keep the backward compatibility of...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@ankitjaininfo we can release a new version. Before marking this issue closed, we wanted to provide CLI for other features as well. We will release a version with everything done up to now, and soon follow with another one complementing the CLI functionality. Thanks!
Reference to PR: #166