Advertisement
Guest User

Untitled

a guest
Mar 21st, 2014
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.19 KB | None | 0 0
  1. #!/bin/bash
  2. #make -B
  3. USERS=1
  4.  
  5. for i in {1..8};
  6. do
  7.     while [ $USERS -lt 5 ];
  8.     do
  9.         echo "Executing with $i cores and $USERS users"
  10.         let USERS=USERS+1
  11.     done
  12. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement