| jacobar |
09-01-2019 04:40 PM |
Quote:
Originally Posted by loramin
(Post 2954199)
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
|