10 lines
136 B
Bash
Executable File
10 lines
136 B
Bash
Executable File
#!/bin/sh
|
|
for DIR in *; do
|
|
#[ -d "$DIR" ] && "cd "$DIR" ; pwd"
|
|
if [ -d "$DIR" ] ; then
|
|
cd "$DIR"
|
|
git up
|
|
cd ..
|
|
fi
|
|
done
|