1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /*
- * This file is part of the UCB release of Plan 9. It is subject to the license
- * terms in the LICENSE file found in the top-level directory of this
- * distribution and at http://akaros.cs.berkeley.edu/files/Plan9License. No
- * part of the UCB release of Plan 9, including this file, may be copied,
- * modified, propagated, or distributed except according to the terms contained
- * in the LICENSE file.
- */
- #include <u.h>
- #include <libc.h>
- #include "multiproto.h"
- struct {
- char *name;
- void (*fn)(int, char**);
- } mains[] =
- {
- #include "multi.h"
- };
- void
- main(int argc, char **argv)
- {
- int i;
- char *cmd, *p;
-
- if(argc == 1){
- fprint(2, "usage: multi cmd args...\n");
- exits("usage");
- }
-
- cmd = argv[1];
- if(p = strrchr(cmd, '/'))
- cmd = p+1;
- argv++;
- argc--;
- for(i=0; i<nelem(mains); i++){
- if(strcmp(cmd, mains[i].name) == 0){
- mains[i].fn(argc, argv);
- return;
- }
- }
- fprint(2, "multi: no such cmd %s\n", cmd);
- exits("no cmd");
- }
|