summaryrefslogtreecommitdiff
path: root/lib/font/graphics/git/dl.sh
diff options
context:
space:
mode:
Diffstat (limited to 'lib/font/graphics/git/dl.sh')
-rwxr-xr-xlib/font/graphics/git/dl.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/font/graphics/git/dl.sh b/lib/font/graphics/git/dl.sh
new file mode 100755
index 0000000..a93c134
--- /dev/null
+++ b/lib/font/graphics/git/dl.sh
@@ -0,0 +1,16 @@
+#!/bin/sh
+
+< list sort -R | while read -r repo
+do
+ echo "$repo"
+ dir="$(echo $line | sed -e "s|.*/||")"
+ if ! [ -d "$dir" ]
+ then
+ git clone --depth 1 "$repo"
+ # Disk space isn't free.
+ #else
+ # cd "$dir"
+ # git pull
+ # cd ..
+ fi
+done