From: Daniel Kahn Gillmor Date: Thu, 4 Sep 2008 20:15:59 +0000 (-0400) Subject: wrote simple monkeyshell so we have a fake shell for test accounts on george (if... X-Git-Tag: monkeysphere_0.15-1~30 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=fd228dce289f18805bceff80e9466a7eaa1119e9;p=monkeysphere.git wrote simple monkeyshell so we have a fake shell for test accounts on george (if we want to give them out). --- diff --git a/src/monkeyshell/Makefile b/src/monkeyshell/Makefile new file mode 100644 index 0000000..312938e --- /dev/null +++ b/src/monkeyshell/Makefile @@ -0,0 +1,2 @@ +monkeyshell: monkeyshell.c + gcc -Wall -Werror --pedantic -o monkeyshell monkeyshell.c diff --git a/src/monkeyshell/monkeyshell b/src/monkeyshell/monkeyshell new file mode 100755 index 0000000..95430f5 Binary files /dev/null and b/src/monkeyshell/monkeyshell differ diff --git a/src/monkeyshell/monkeyshell.c b/src/monkeyshell/monkeyshell.c new file mode 100644 index 0000000..99da4fa --- /dev/null +++ b/src/monkeyshell/monkeyshell.c @@ -0,0 +1,7 @@ +#include + +int main() +{ + printf("monkeys!\n"); + return 123; +}