Picocli offers the ability to add a nice header in the @Command
annotation, for example:
@Command(name = "git-star", header = {
"@|green _ _ _ |@",
"@|green __ _(_) |_ __| |_ __ _ _ _ |@",
"@|green / _` | | _(_-< _/ _` | '_| |@",
"@|green \\__, |_|\\__/__/\\__\\__,_|_| |@",
"@|green |___/ |@"},
description = "Shows GitHub stars for a project",
mixinStandardHelpOptions = true, version = "git-star 0.1")
How do I always show that header/banner when the program is running, without duplicating this banner in two places?
(See also https://github.com/remkop/picocli/issues/517)