cd seti wine seti.exe |
wine seti.exe -proxy 192.168.0.1:5517 or wine -- seti.exe -proxy 192.168.0.1:5517 |
nice -18 wine -- seti.exe -proxy 192.168.0.1:5517 |
#!/bin/bash cd /path/to/my/seti/dir while [ -f user_info.sah ]; do if [ -f result.sah ]; then ./setiathome -stop_after_xfer else wine -- seti.exe -stop_after_process fi done |
Note |
Remember to
edit line 2 to reflect the location of your Seti directory and add any
additional parameters as required. The script requires both the Linux
client (setiathome) and Windows client (seti.exe) to be present in the
working Seti directory. Edit the script or your client filenames as
appropriate. |
#!/bin/bash # Edit the path to your Seti directory cd /path/to/my/seti/dir # Check the stop_after_send.txt file is not present by first creating it, then deleting it. # If you try to delete it and it's not present you get an error. touch stop_after_send.txt rm stop_after_send.txt while [ -f user_info.sah ]; do if [ -f result.sah ]; then touch stop_after_send.txt ./setiathome -proxy 192.168.0.1:5517 rm stop_after_send.txt else nice -18 wine seti.exe -proxy 192.168.0.1:5517 -stop_after_process fi done |