Hi, how can I print the output of the miner into a file? I do
for (( j=0; j<$num; j++ )); do
./phoenix.py -u http://xyz_$j:123456@mineco.in:3000/ -k poclbm DEVICE=$j VECTORS BFI_INT FASTLOOP=false AGGRESSION=13 > /home/user/miner_log_$j.txt &
sleep 10
done
so it runs in the background and prints the output into the log_files. But I get a lot of additional unreadable characters in each line looking like this:
[424.39 Mhash/sec] [56 Accepted] [1 Rejected] [RPC (+LP)] [424.90 Mhash/sec] [56 Accepted] [1 Rejected] [RPC (+LP)] [425.21 Mhash/sec] [56 Accepted] [1 Rejected] [RPC (+LP)] [425.38 Mhash/sec] [56 Accepted] [1 Rejected] [RPC (+LP)] [425.21 Mhash/sec] [56 Accepted] [1 Rejected] [RPC (+LP)] [425.29 Mhash/sec] [56 Accepted] [1 Rejected] [RPC (+LP)] [424.98 Mhash/sec] [56 Accepted] [1 Rejected] [RPC (+LP)] [424.83 Mhash/sec] [56 Accepted] [1 Rejected] [RPC (+LP)] [19/08/2011 14:07:43] Result: 06c4d93e accepted
All I want to see in the logfile is the time, the speed, the accepted/rejected number and the result. How can I do that?