diff options
-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 |