Advertisement
Guest User

Nicolas

a guest
Oct 27th, 2007
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.24 KB | None | 0 0
  1. cd /path/to/boinc/install/dir;
  2. ./boinccmd --get_results |
  3. grep "^ +(state|name|project URL): " | (
  4.   while read x name; read x x url; read x state; do
  5.     if [ $state = 5 ]; then
  6.       ./boinccmd --project $url update;
  7.     fi;
  8.   done
  9. );
  10.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement