summaryrefslogtreecommitdiff
path: root/scripts/sh/local-srv
diff options
context:
space:
mode:
authorGeorge Abbott <george@gabbott.dev>2025-01-26 11:37:22 +0000
committerGeorge Abbott <george@gabbott.dev>2025-01-26 11:37:22 +0000
commit82abadcecc7534b4847238ee2a977f33256b0439 (patch)
treead8752c1dc9914829e80bc2f3f1a45dfec8f4b4a /scripts/sh/local-srv
parentbac748dbe8c28cf1ed3b387b24f89ffe5a58ffc9 (diff)
sh
Diffstat (limited to 'scripts/sh/local-srv')
-rwxr-xr-xscripts/sh/local-srv6
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/sh/local-srv b/scripts/sh/local-srv
new file mode 100755
index 0000000..5eaefa7
--- /dev/null
+++ b/scripts/sh/local-srv
@@ -0,0 +1,6 @@
+#!/bin/sh
+# Spin up a server at the passed in directory.
+
+[ -z "$2" ] && port=1102 || port="$2"
+
+python3 -m http.server "$port" -d $1