Skip to content

Instantly share code, notes, and snippets.

@hexathos
Last active October 5, 2017 20:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hexathos/b30ea59e051b65dba0905834079c1092 to your computer and use it in GitHub Desktop.
Save hexathos/b30ea59e051b65dba0905834079c1092 to your computer and use it in GitHub Desktop.
EVE GameLogs to speech on linux
## ONE logfile
tail -n1 -f logfilename | sed 's/.*)//' -u | sed 's/<[^>]\+>//g' -u | espeak -ven-us+f5 -s1600 --pho
## Multiple Logfiles with cachefile
#this must run in background, or any other console
tail -n1 -f * | grep -v "==" --line-buffered | sed 's/.*)//' -u | sed 's/<[^>]\+>//g' -u >>~/Documents/eve.log
#this is for text2speech conversion
tail -f ~/Documents/eve.log | espeak -ven-us+f5 -s1600 --pho
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment