1

我正在尝试使用 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不起作用呢?

4

1 回答 1

1

我怀疑您的循环中的某些东西(可能是该svn2git过程的一部分)正在消耗stdin。考虑这样的循环:

ls /etc | while read file; do
    echo "filename: $file"
    cat > /tmp/data
done

不管有多少个文件/etc,这个循环只会运行一次。in这个cat循环将消耗所有其他输入stdin

stdin您可以通过显式重定向from来查看是否遇到过相同的情况/dev/null,如下所示:

cat $LIST | gawk -F";" '{ print $2; }' | while read module_to_import
do
    echo "before import $module_to_import"
    importToGitModule "$module_to_import" < /dev/null
done
于 2015-07-09T13:26:17.893 回答