summaryrefslogtreecommitdiff
path: root/.local/bin/update-repos
diff options
context:
space:
mode:
authorseth <[email protected]>2022-01-21 16:47:39 -0500
committerseth <[email protected]>2022-08-04 04:40:49 -0400
commitac74db5a8fa69e5d3047b35f70c65b27dc07cfcb (patch)
tree5b6fcdb6cbf7c8c81a8b0a745e013094bdd82793 /.local/bin/update-repos
parente5605617b57264069374ea0753c19cd69714df6d (diff)
update shell dotfiles
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