Skip to content

Commit d64f2ed

Browse files
committed
Update
1 parent 0b738d2 commit d64f2ed

File tree

2 files changed

+45
-0
lines changed

2 files changed

+45
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.DS_Store

checkall.sh

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
#!/bin/sh
2+
3+
4+
# From http://github.com/wilsonmar/checkall.sh
5+
# Based on http://steve-parker.org/sh/functions.shtml
6+
7+
# Before calling this, run: chmod a+x checkall.sh
8+
# Call from command line: ./rn checkall.sh
9+
10+
NOW=$(date)
11+
echo "***** ${NOW}."
12+
13+
HOST="https://github.com/wilsonmar"
14+
15+
checkone()
16+
{
17+
echo "_"
18+
echo "***** REPO=${HOST}/${REPO} ******"
19+
cd ${REPO}
20+
git status
21+
git fetch
22+
cd ..
23+
}
24+
25+
# Move up
26+
cd ..
27+
28+
# Do each (alphabetically):
29+
REPO="git-utilities"
30+
checkone
31+
32+
REPO="oss-perf"
33+
checkone
34+
35+
REPO="SAP-HANA"
36+
checkone
37+
38+
REPO="scala"
39+
checkone
40+
41+
# Move back down
42+
cd git-utilities
43+
44+
echo "******"

0 commit comments

Comments
 (0)