Lines Matching +full:build +full:- +full:and +full:- +full:deploy
1 /* skeleton.c - Example program to act as template for new commands.
7 * See http://refspecs.linuxfoundation.org/LSB_4.1.0/LSB-Core-generic/LSB-Core-generic/cmdbehav.html
9 * See http://man7.org/linux/man-pages/dir_section_1.html
21 usage: skeleton [-a] [-b STRING] [-c NUMBER] [-d LIST] [-e COUNT] [...]
25 When creating a new command, copy this file and delete the parts you
26 don't need. Be sure to replace all instances of "skeleton" (upper and lower
35 usage: skeleton_alias [-dq] [-b NUMBER]
45 // It's customary to put a space between argument variables and other globals.
63 // Don't blindly build allyesconfig. The maximum _sane_ config is defconfig.
64 #warning skeleton.c is just an example, not something to deploy.
71 printf("Ran %s\n", toys.which->name);
80 printf("d=%s\n", TT.s.d->arg);
81 TT.s.d = TT.s.d->next;
86 if (FLAG(walrus)) printf("Saw --walrus\n");
87 if (TT.s.blubber) printf("--blubber=%s\n", TT.s.blubber);
99 printf("Ran %s\n", toys.which->name); in skeleton_alias_main()
103 // and fills out a different variable of a different type. in skeleton_alias_main()