Update of /cvsroot/refdb/refdb/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21248/src
Modified Files:
Tag: Release_0_9_5_stable
refdbc.c
Log Message:
fixed help messages
Index: refdbc.c
===================================================================
RCS file: /cvsroot/refdb/refdb/src/refdbc.c,v
retrieving revision 1.72.2.5
retrieving revision 1.72.2.6
diff -u -U2 -r1.72.2.5 -r1.72.2.6
--- refdbc.c 15 Apr 2005 22:45:08 -0000 1.72.2.5
+++ refdbc.c 19 Apr 2005 19:39:58 -0000 1.72.2.6
@@ -2761,8 +2761,8 @@
case 'h':
if (type == 0 || type == 6 | type == 7) {
- printf("Displays the result of an author search.\nSyntax: getau [-c command] [-d database] [-h] [-o outfile] [-O outfile] {regexp}\ngeted and getas work the same way, but return a list of editors and series authors, respectively.\nOptions: -p command pipe the output through command\n -d database specify the database to work with\n -h prints this mini-help\n -o outfile save the output in outfile (overwrite)\n -O outfile append the output to outfile\n All other arguments are interpreted as the search string/regular expression.\n");
+ printf("Displays the result of an author search.\nSyntax: getau [-c command] [-d database] [-h] [-o outfile] [-O outfile] {regexp}\ngeted and getas work the same way, but return a list of editors and series authors, respectively.\nOptions: -c command pipe the output through command\n -d database specify the database to work with\n -h prints this mini-help\n -o outfile save the output in outfile (overwrite)\n -O outfile append the output to outfile\n All other arguments are interpreted as the search string/regular expression.\n");
}
else if (type == 1) {
- printf("Displays the result of a keyword search.\nSyntax: getkw [-c command] [-d database] [-h] [-o outfile] [-O outfile] {regexp}\nOptions: -p command pipe the output through command\n -d database specify the database to work with\n -h prints this mini-help\n -o outfile save the output in outfile (overwrite)\n -O outfile append the output to outfile\n All other arguments are interpreted as the search string/regular expression.\n");
+ printf("Displays the result of a keyword search.\nSyntax: getkw [-c command] [-d database] [-h] [-o outfile] [-O outfile] {regexp}\nOptions: -c command pipe the output through command\n -d database specify the database to work with\n -h prints this mini-help\n -o outfile save the output in outfile (overwrite)\n -O outfile append the output to outfile\n All other arguments are interpreted as the search string/regular expression.\n");
}
else {
|