This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] /
1 public class generate {
2
3     public static void main(String x[]) {
4         int j=1;
5         int cost=1;
6         System.out.println("#!/bin/bash");
7         for(int i=0;i<2200;i++) {
8             int price=cost*50;
9             int jbuy=j-1;
10             System.out.println("wget http://$1:9000/trans_add_f"+i+"_"+j+"_"+price);
11             System.out.println("wget http://$1:9000/trans_buy_f"+i+"_"+jbuy);
12             if (cost>3) cost=1; else cost++;
13             if (j>4) j=1; else j++;
14         }
15         System.out.println("wget http://$1:9000/trans_inventory");
16     }
17
18
19 }