0
我有一個腳本,我需要運行許多輸入組合。目前我正在用perl腳本來做,但我想學習如何在shell中完成它。For循環終端
我需要運行./script.pl a b
爲的= 1..100和b的所有組合= 1..100
for ($a = 1; $a <100; $a++) {
for ($b = 1; $b <100; $b++) {
system "./script.pl $a $b";
}
}
我目前使用bash,但zsh中或tcsh工作過。