如何在另一个shell脚本中运行shell脚本

时间:2016-05-10 08:24:43

标签: shell

我有一个类似

的shell脚本
a="2 3 6"
b="winter summer"
c="model1 model2"

for i in $a;do
 cd "directory_$i"
 sh script.sh
 cd -
done

其中script.sh是

 for j in $b;do
   for k in $c;do
     some computation
   done
 done

当我运行它时,它没有执行script.sh。

0 个答案:

没有答案