我正在尝试使用 svn2git 将一些模块从 SVN 迁移到 GIT。我在 .csv 文件中有一个模块列表,如下所示:
pl.com.neokartgis.i18n;pl.com.neokartgis.i18n;test-gis;svniop
pl.com.neokartgis.cfg;pl.com.neokartgis.cfg;test-gis;svniop
pl.com.neokart.db;pl.com.neokart.db;test-gis;svniop
我想将每个模块迁移到单独的 GIT 存储库。我尝试了以下脚本,该脚本从 .csv 文件中读取模块列表并循环导入每个模块:
#!/bin/bash
LIST=$1
SVN_PATH=svn://svn.server/path/to/root
DIR=`pwd`
function importToGitModule {
cd $DIR
rm -rf /bigtmp/svn2git/repo
mkdir /bigtmp/svn2git/repo
cd /bigtmp/svn2git/repo
svn2git --verbose $SVN_PATH/$1
#some other stuff with imported repository
}
cat $LIST | gawk -F";" '{ print $2; }' | while read module_to_import
do
echo "before import $module_to_import"
importToGitModule "$module_to_import";
done;
问题是脚本在第一次迭代后结束。但是,如果我删除对 的调用svn2git
,脚本将按预期工作并为文件中的每个模块打印消息。
我的问题是:为什么这个脚本在第一次迭代后结束,我怎样才能改变它以循环导入所有模块?
编辑:
以下版本的循环正常工作:
for module_to_import in `cat $LIST | gawk -F";" '{ print $2; }'`
do
echo "before import $module_to_import"
importToGitModule "$module_to_import";
done;
那么为什么while read
不起作用呢?