2 #include <gpxe/command.h>
6 static int cmd_test_exec ( int argc, char **argv ) {
9 printf("Hello, world!\nI got the following arguments passed to me: \n");
10 for(i = 0; i < argc; i++){
11 printf("%d: \"%s\"\n", i, argv[i]);
16 struct command test_command __command = {
18 .exec = cmd_test_exec,