summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorJacob McDonnell <jacob@jacobmcdonnell.com>2025-05-29 20:10:01 -0400
committerJacob McDonnell <jacob@jacobmcdonnell.com>2025-05-29 20:10:01 -0400
commit5b05099d44ae6ac962be108f4c0da7493a9305c7 (patch)
tree1b796b3ff1491e83f26c9ba09fd6c48feac7c994 /scripts
Initial CommitHEADmain
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/copy.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/copy.sh b/scripts/copy.sh
new file mode 100755
index 0000000..293ceea
--- /dev/null
+++ b/scripts/copy.sh
@@ -0,0 +1,6 @@
+#!/bin/sh
+
+while read e; do
+ $(echo $e | sed -E "s/(.*[^ ]) +--> +([^ ].*)/cp -r \1 $1\/\2/")
+done < $2
+