35
36
37
38
39
40
41
42
43
44
45
|
oldmenu=menu
}
oldN=N
OLDPATH=PATH
oldcategory=category
split($2,EXAMPLE,"_");
example = EXAMPLE[1];
printf(" set mtt \"xmtt -example %s\" \n", example);
printf("%s add command -label %s -command \" exec $mtt &\"\n", menu, example);
}
}'
|
|
|
35
36
37
38
39
40
41
42
43
44
45
|
oldmenu=menu
}
oldN=N
OLDPATH=PATH
oldcategory=category
split($2,EXAMPLE,"_");
example = EXAMPLE[1];
printf(" set mtt \"xmtt --example %s\" \n", example);
printf("%s add command -label %s -command \" exec $mtt &\"\n", menu, example);
}
}'
|