aboutsummaryrefslogtreecommitdiff
path: root/vendor/voclient/voapps/task/_pkgbin
blob: 920b90862bf112eaca419b8e5d2929ee9ee0ad37 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/**
 *
 */

#include <stdio.h>
#include <stdlib.h>


int main (int argc, char *argv[])
{

    /* Process arguments.
     */
    for (i=1; i < argc; i++) {
        switch (argv[i]) {
	case 'h':			// help 
	case 'd':			// debug 
	case 'v':			// verbose 

	case 'a':			// package attributes
	case 't':			// package task list
	case 'p':			// task parameters ("-p <task>")

	case 'S':			// task parameters ("-p <task>")
	default:
	    taskName = argv[i]		// execute task ....
        }
    }


}