我想知道在 bash 中是否有一种优雅的方式来执行以下操作:
我需要检查一个列表的某个值,我们称之为“1”。对于我找到这个值的每个条目,我需要在另一个列表中累积一个匹配的字符串(具有相同的索引),并最终将其打印出来。
例如:让我们假设值列表是"1 0 1 1 "
字符串列表是"What a wonderful day"
所以输出字符串将是"What wonderful day"
谢谢
这是我提出的解决方案:
#!/bin/sh
myMatch=1 #This is the value you're looking for
myString="What a wonderful day";
myList=( $myString ) #String to Array conversion
count=0;
for i in $@; do #Iterate over the input parameters
if [ $i -eq $myMatch ]; then
echo -n "${myList[$count]} " #use -n to avoid newline and append space as a separator
count=$(($count+1))
fi
done
所以调用给出值列表的脚本:
$ . myScript.sh 1 0 1 1
你有想要的结果。