2019-12-08 22:43:49 +01:00
|
|
|
#! /bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
declare -a arr=(
|
|
|
|
"pnm-19"
|
|
|
|
"pnm-20"
|
|
|
|
"pnm-21"
|
|
|
|
"pnm-22"
|
|
|
|
"pnm-23"
|
|
|
|
"pnm-24"
|
2021-09-06 21:28:18 +02:00
|
|
|
"pnm-25"
|
2022-09-19 00:36:42 +02:00
|
|
|
"pnm-26"
|
2019-12-08 22:43:49 +01:00
|
|
|
"iidx-20"
|
|
|
|
"iidx-21"
|
|
|
|
"iidx-22"
|
|
|
|
"iidx-23"
|
|
|
|
"iidx-24"
|
2021-06-10 13:40:04 +02:00
|
|
|
"iidx-25"
|
|
|
|
"iidx-26"
|
2019-12-08 22:43:49 +01:00
|
|
|
"jubeat-5"
|
|
|
|
"jubeat-5+"
|
|
|
|
"jubeat-6"
|
|
|
|
"jubeat-7"
|
|
|
|
"jubeat-8"
|
2022-10-03 04:10:43 +02:00
|
|
|
"jubeat-9"
|
2019-12-08 22:43:49 +01:00
|
|
|
"ddr-12"
|
|
|
|
"ddr-13"
|
|
|
|
"ddr-2013"
|
|
|
|
"ddr-2014"
|
|
|
|
"ddr-ace"
|
|
|
|
"bishi"
|
|
|
|
"sdvx-1"
|
|
|
|
"sdvx-2"
|
|
|
|
"sdvx-3s1"
|
|
|
|
"sdvx-3s2"
|
|
|
|
"sdvx-4"
|
|
|
|
"museca-1"
|
|
|
|
"museca-1+1/2"
|
|
|
|
"reflec-1"
|
|
|
|
"reflec-2"
|
|
|
|
"reflec-3"
|
|
|
|
"reflec-4"
|
|
|
|
"reflec-5"
|
|
|
|
"reflec-6"
|
2021-09-06 02:16:06 +02:00
|
|
|
"mga"
|
2019-12-08 22:43:49 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
for project in "${arr[@]}"
|
|
|
|
do
|
|
|
|
./trafficgen --game $project "$@"
|
|
|
|
done
|