View Single Post
  #11  
Old 09-01-2019, 04:40 PM
jacobar jacobar is offline
Sarnak

jacobar's Avatar

Join Date: Dec 2017
Posts: 218
Default

Quote:
Originally Posted by loramin [You must be logged in to view images. Log in or Register.]
The UNIX-y way would be to give your friend SSH access to your computer. Then they could just run:

Code:
ssh username@yourIP tail -f /path/to/logs/log.txt
to watch your logs.
Yes awesome idea to ssh, this link will give you information about a simular setup on windows if youre running that https://serverfault.com/questions/43...a-ssh-terminal. also to add to loraimin you can add a pipe commsnd to the end directed to a text file that would allow you to use a parser on it as i dont think you can parse just a tail output for example " tail -f /path/to/logs/log.txt[/CODE > /path/to/your/local/file.txt " to be able to have a physical file to select with your parse program
Reply With Quote