1 2 3 4 5 6
#!/bin/bash set -xeuo pipefail for i in {02..10} do ./generate.php | tee test$i.in | ./resitev > test$i.out done