Added update.sh and replaced <Enter> from :w to :up

This commit is contained in:
Austen Adler 2014-07-16 15:07:09 -04:00
parent f76bb9c2af
commit 196aac9dc3

9
update.sh Executable file
View File

@ -0,0 +1,9 @@
#!/bin/sh
for DIR in *; do
#[ -d "$DIR" ] && "cd "$DIR" ; pwd"
if [ -d "$DIR" ] ; then
cd "$DIR"
git up
cd ..
fi
done