···1212func newRootCommand(a appherder.App, stdout io.Writer, stderr io.Writer) *cobra.Command {
1313 cmd := &cobra.Command{
1414 Use: "appherder",
1515- Short: "A herder for your AppImages",
1616- Long: "appherder installs AppImages so they show up in your application menu with their\n" +
1717- "real name and icon, instead of sitting in a folder doing nothing. Drop AppImages in\n" +
1818- "~/AppImages and appherder keeps everything in sync.",
1515+ Short: "A shepherd for your AppImages",
1616+ Long: "appherder manages your AppImages for you. Drop them in ~/AppImages and they show\n" +
1717+ "up in your menu like any other app, with their real name and icon. New versions\n" +
1818+ "replace the old ones. Add or remove AppImages and appherder sorts it out,\n" +
1919+ "optionally on its own.",
2020+ Version: version,
1921 SilenceUsage: true,
2022 SilenceErrors: true,
2123 }