@@ -1008,7 +1008,7 @@ module.)
10081008Command Interface Specification
10091009~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10101010
1011- A single command, roundup, provides basic access to the hyperdatabase
1011+ A single command, `` roundup-admin`` , provides basic access to the hyperdatabase
10121012from the command line::
10131013
10141014 roundup-admin help
@@ -1039,11 +1039,12 @@ the printed results:
10391039 are both accepted; an empty string, a single item, or a list of items
10401040 joined by commas is accepted.
10411041
1042- When multiple items are specified to the roundup get or roundup set
1042+ When multiple items are specified to the roundup-admin get or roundup-admin set
10431043commands, the specified properties are retrieved or set on all the
10441044listed items.
10451045
1046- When multiple results are returned by the roundup get or roundup find
1046+ When multiple results are returned by the roundup-admin get or
1047+ roundup-admin find
10471048commands, they are printed one per line (default) or joined by commas
10481049(with the -list) option.
10491050
@@ -1055,8 +1056,8 @@ To find all messages regarding in-progress issues that contain the word
10551056"spam", for example, you could execute the following command from the
10561057directory where the database dumps its files::
10571058
1058- shell% for issue in `roundup find issue status=in-progress`; do
1059- > grep -l spam `roundup get $issue messages`
1059+ shell% for issue in `roundup-admin find issue status=in-progress`; do
1060+ > grep -l spam `roundup-admin get $issue messages`
10601061 > done
10611062 msg23
10621063 msg49
@@ -1066,8 +1067,8 @@ directory where the database dumps its files::
10661067
10671068Or, using the -list option, this can be written as a single command::
10681069
1069- shell% grep -l spam `roundup get \
1070- \`roundup find -list issue status=in-progress\` messages`
1070+ shell% grep -l spam `roundup-admin get \
1071+ \`roundup-admin find -list issue status=in-progress\` messages`
10711072 msg23
10721073 msg49
10731074 msg50
@@ -1156,7 +1157,7 @@ Setting Properties
11561157The e-mail interface also provides a simple way to set properties on
11571158issues. At the end of the subject line, ``propname=value`` pairs can be
11581159specified in square brackets, using the same conventions as for the
1159- roundup ``set`` shell command.
1160+ roundup-admin ``set`` shell command.
11601161
11611162
11621163Web User Interface
0 commit comments