summaryrefslogtreecommitdiff
path: root/.local/bin/update-repos
diff options
context:
space:
mode:
Diffstat (limited to '.local/bin/update-repos')
-rwxr-xr-x.local/bin/update-repos7
1 files changed, 0 insertions, 7 deletions
diff --git a/.local/bin/update-repos b/.local/bin/update-repos
deleted file mode 100755
index cfa5810..0000000
--- a/.local/bin/update-repos
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/sh
-
-## run this in a directory full of git repos (i usually keep them in ~)
-for dir in *
-do
- cd "$dir" && git pull | sed s/Already/"$dir"\ is\ already/; cd ..
-done