公告板
版本库
filestore
活动
搜索
登录
~chenshijun
/
analysis
派生自
analysis
概况
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
script for modules
zhangmeng
2019-12-11
417cc9f5d78041ad20149ab37526ec925c355325
[~chenshijun/analysis.git]
/
modulepull.sh
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
cur=`pwd`
for v in `ls`; do
if [ ! -d $cur"/"$v ]; then
continue
fi
cd $v
git pull
cd ..
done