Guest User

Untitled

a guest
May 27th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.27 KB | None | 0 0
  1. #!/bin/bash
  2. i=1;
  3. k=4
  4. a=$(diff -q test1.out test2.out);
  5. while [ "$a" == "" ]; do
  6.     echo $i;
  7.     ./gen2 50001 100000 $i > teszt$k.in
  8.     ((i=i+1));
  9.     ./wzor32.e < teszt$k.in > test1.out;
  10.     ./bug < teszt$k.in > test2.out;
  11.     a=$(diff -q test1.out test2.out);
  12. done
Add Comment
Please, Sign In to add comment