summary refs log tree commit diff
diff options
context:
space:
mode:
authornoa2024-01-03 10:57:43 +0000
committernoa2024-01-03 10:57:43 +0000
commiteb3230b03d4746f25cb368cdb756a25f2de7ee3a (patch)
tree99536731c11cd652bcb785f22921b7089d04a95b
parent2693f666acd19022aedacf5a184cfabcd834cbc3 (diff)
Add install script
-rwxr-xr-xinstall.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/install.sh b/install.sh
new file mode 100755
index 0000000..4573836
--- /dev/null
+++ b/install.sh
@@ -0,0 +1,9 @@
+#!/usr/bin/env sh
+
+for command in ./commands/*; do
+	cp "$command" /town/our/
+done
+
+for file in ./data/*; do
+	cp "$file" /town/our/data/
+done