summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniel Kahn Gillmor <dkg@fifthhorseman.net>2008-09-04 16:15:59 -0400
committerDaniel Kahn Gillmor <dkg@fifthhorseman.net>2008-09-04 16:15:59 -0400
commitfd228dce289f18805bceff80e9466a7eaa1119e9 (patch)
tree15913cf265e1a0bd36f6d691d6bc07dc46e69197 /src
parent7c3907e9b1d11c55db00f86b9534947f3b51b3ba (diff)
wrote simple monkeyshell so we have a fake shell for test accounts on george (if we want to give them out).
Diffstat (limited to 'src')
-rw-r--r--src/monkeyshell/Makefile2
-rwxr-xr-xsrc/monkeyshell/monkeyshellbin0 -> 6263 bytes
-rw-r--r--src/monkeyshell/monkeyshell.c7
3 files changed, 9 insertions, 0 deletions
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
--- /dev/null
+++ b/src/monkeyshell/monkeyshell
Binary files 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 <stdio.h>
+
+int main()
+{
+ printf("monkeys!\n");
+ return 123;
+}