View Single Post
  #379  
Old 12-08-2016, 05:36 PM
DevGrousis DevGrousis is offline
Fire Giant

DevGrousis's Avatar

Join Date: Feb 2010
Posts: 695
Default

I am often in EC for a day at a time, even while I'm AFK.

How do I install the logger on my mac setup?

The website surprisingly doesn't have a guide. I downloaded the logger designated as MAC, but its just a text file, and it might as well be a different language. Do I place that text somewhere or is that a guide?

Any help would be good.

Text in the file:

Code:
#!/bin/bash

#Define your log directory here - easiest to symlink to your wine DIR
LOGDIR=~/eqLogs

#Don't mess with this!
IFS=$'\n'

while :; do
	for f in `find ${LOGDIR}/eqlog* -newerct "1 minute ago"`; do
		echo "Working with: $f"
		curl -F "dump=$(tail -n100 $f|grep -E '[A-Za-z] auctions, ')" http://ahungry.com/aucDump.php
	done
	sleep 60
done
__________________
Quote:
Poor life decisions and planning. I call them RL n00bs. Get RL levels while you are young.

Asher
Reply With Quote