Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Routines to follow the Espanso log for problems, without having to
- # type `espanso log` every time something goes wrong:
- # Linux
- tail -F ~/.cache/espanso/espanso.log | grep -v "INFO"
- # Windows
- Get-Content "$env:LOCALAPPDATA\espanso\espanso.log" -Wait | Where-Object { $_ -notmatch "INFO" }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement