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