[COGITO PATCH] Improvements for cg and cg-help

Subsystems: the rest

DORMANTno replies

2 messages, 2 authors, 2016-06-15 · open the first message on its own page

[COGITO PATCH] Improvements for cg and cg-help

From: Pavel Roskin <hidden>
Date: 2016-06-15 22:41:59

Hello!

cg should not run cg-help with arguments unless they were specified
after an explicit "help" command
("cg help -option")

cg without arguments should run cg-help.
cg with any option before the command ("cg -foo cmd") should also run
cg-help.

cg-help should print help for cg-help if specific help is not available,
e.g.:

$ cg-help foo
Error: no help available for "foo"
Usage: cg-help [COMMAND]
...

Signed-off-by: Pavel Roskin <redacted>
diff --git a/cg b/cg
--- a/cg
+++ b/cg
@@ -1,7 +1,10 @@
 #!/bin/sh
 
 cmd="$1"; shift
-[ x"$cmd" = x"--help" ] && cmd="help"
+case x$cmd in
+	x-*) exec cg-help;;
+	x) exec cg-help;;
+esac
 
 exe="cg-$cmd"
 exec $exe "$@"
diff --git a/cg-help b/cg-help
--- a/cg-help
+++ b/cg-help
@@ -19,7 +19,9 @@ _git_repo_unneeded=1
 
 if [ "$1" ]; then
 	cmd=$(echo "$1" | sed 's/^cg-//')
-	print_help $cmd
+	(print_help $cmd) && exit
+	echo "Error: no help available for \"$1\""
+	print_help help
 fi
 
 

-- 
Regards,
Pavel Roskin

Re: [COGITO PATCH] Improvements for cg and cg-help

From: Petr Baudis <hidden>
Date: 2016-06-15 22:41:59

Dear diary, on Thu, Jun 09, 2005 at 05:17:22PM CEST, I got a letter
where Pavel Roskin [off-list ref] told me that...
Hello!
Hello,
cg with any option before the command ("cg -foo cmd") should also run
cg-help.
it shouldn't.
cg-help should print help for cg-help if specific help is not available,
it shouldn't, it should report an error.

The rest was applied, thanks.

-- 
				Petr "Pasky" Baudis
Stuff: http://pasky.or.cz/
<Espy> be careful, some twit might quote you out of context..
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help