2

我有 3 或 4 列的 tsv,每列都是 shell 脚本的参数。
所以我想使用 gnu 并行运行带有 tsv 值的 shell 脚本

~ parallel --colsep "\t" thescript.py --arg1 {1} --arg2 {2} --arg3 {3} --arg4 {4} :::: input.tsv

第 4 列并不总是存在,所以我想知道是否有一种聪明的方法可以--arg4 {4}仅在{4}存在时添加。
python 使用 optparser.Optionparser,我更喜欢避免修改脚本。

4

1 回答 1

1

当第 4 列没有值时,GNU Parallel 将 {4} 作为字符串“{4}”传递。

thescript.py你可以用 if包装:

parallel --colsep "\t" 'if [ "{4}" = "\{4\}" ]; then thescript.py --arg1 {1} --arg2 {2} --arg3 {3}; else thescript.py --arg1 {1} --arg2 {2} --arg3 {3} --arg4 {4}; fi'  :::: input.tsv

或者,如果您更喜欢可读性,请使用 Bash 函数:

my_func() {
    if [ "$4" = "\{4\}" ]; then
        thescript.py --arg1 $1 --arg2 $2 --arg3 $3
    else
        thescript.py --arg1 $1 --arg2 $2 --arg3 $3 --arg4 $4
    fi
}
export -f my_func
parallel --colsep "\t" my_func {1} {2} {3} {4} :::: input.tsv
于 2013-10-21T10:04:01.090 回答