diff options
author | noa | 2024-01-03 10:57:43 +0000 |
---|---|---|
committer | noa | 2024-01-03 10:57:43 +0000 |
commit | eb3230b03d4746f25cb368cdb756a25f2de7ee3a (patch) | |
tree | 99536731c11cd652bcb785f22921b7089d04a95b | |
parent | 2693f666acd19022aedacf5a184cfabcd834cbc3 (diff) |
Add install script
-rwxr-xr-x | install.sh | 9 |
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 |