Changeset 41284 for trunk/Ohana/src/opihi/cmd.data
- Timestamp:
- Feb 24, 2020, 3:51:43 PM (6 years ago)
- Location:
- trunk/Ohana/src/opihi/cmd.data
- Files:
-
- 2 edited
- 1 copied
-
Makefile (modified) (1 diff)
-
init.c (modified) (2 diffs)
-
queue2book.c (copied) (copied from trunk/Ohana/src/opihi/pantasks/ipptool2book.c ) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/opihi/cmd.data/Makefile
r41164 r41284 129 129 $(SRC)/queuesubstr.$(ARCH).o \ 130 130 $(SRC)/queueinit.$(ARCH).o \ 131 $(SRC)/queue2book.$(ARCH).o \ 131 132 $(SRC)/radial.$(ARCH).o \ 132 133 $(SRC)/rd.$(ARCH).o \ -
trunk/Ohana/src/opihi/cmd.data/init.c
r41164 r41284 115 115 int queuesubstr PROTO((int, char **)); 116 116 int queuesize PROTO((int, char **)); 117 int queue2book PROTO((int, char **)); 117 118 int rd PROTO((int, char **)); 118 119 int rdseg PROTO((int, char **)); … … 314 315 {1, "queuesize", queuesize, "show queue size"}, 315 316 {1, "queuesubstr", queuesubstr, "bulk replace strings in queue"}, 317 {1, "queue2book", queue2book, "convert queue with ipptool output to book"}, 318 {1, "ipptool2book", queue2book, "convert queue with ipptool output to book"}, 316 319 {1, "rd", rd, "load fits image"}, 317 320 {1, "rdseg", rdseg, "read a segment of an image from a file"}, -
trunk/Ohana/src/opihi/cmd.data/queue2book.c
r41177 r41284 7 7 8 8 // convert the named queue with ipptool metadata output into book format 9 int ipptool2book (int argc, char **argv) {9 int queue2book (int argc, char **argv) { 10 10 11 11 int i, N, onPage, found, Unique, Nkeys, NKEYS; … … 67 67 68 68 if (argc != 3) { 69 gprint (GP_ERR, "USAGE: ipptool2book (queue) (book) [-uniq] [-key key[:key..]]\n"); 69 gprint (GP_ERR, "USAGE: queue2book (queue) (book) [-uniq] [-key key[:key..]]\n"); 70 gprint (GP_ERR, " converts the named queue with ipptool metadata output into book format\n"); 70 71 FREEKEYS; 71 72 return (TRUE);
Note:
See TracChangeset
for help on using the changeset viewer.
