Skip to content

Instantly share code, notes, and snippets.

@lumue
Last active September 27, 2017 10:50
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lumue/466483d9f899fdd0c648 to your computer and use it in GitHub Desktop.
Save lumue/466483d9f899fdd0c648 to your computer and use it in GitHub Desktop.
send kodi.log to syslog
#!/bin/bash
cat /home/osmc/.kodi/temp/kodi.log |
while read -r line
do
logger $line
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment