Skip to content

Instantly share code, notes, and snippets.

Positive
Assist -> Goal
Drawn Ejection -> Goal
Drawn Ejection -> Assist -> Goal
Steal -> Goal
Negative
Ejection -> Goal
Turnover -> Goal
@kcbarry
kcbarry / WeenixWorkaround
Last active December 16, 2015 20:29
A quick and dirty way to run commands on weenix without a terminal
Add this to the end of kernel/test/kshell/kshell.c and declare it in the associated .h
int kshell_test(kshell_t *ksh,char *command)
{
char *args[10];
int argc = 0;
char redirect_in[MAXPATHLEN];
char redirect_out[MAXPATHLEN];
int append;
redirect_in[0] = redirect_out[0] = '\0';