Quickly tail local and remote files
npm install -g tailr
to add zsh completions:
tailr --completions >> ~/.zshrc
NOTE: If you're using the completions and you get a warning about insecure directories it's because the owner of the directory ".../node/.../lib/node_modules/tailr/completions" should be either the root user or the current user.
Create a file named '.tailr.coffee' in your home directory:
module.exports =
logs:
my_remote_log:
server: 'myserver'
username: 'myuser'
port: 1234
filename: '/path/to/file/on/remote/server.log'
my_local_log:
filename: '/path/to/local/file'
highlights:
blabla: 'red'
# show the names of the logs specified in ~/.tailr.coffee
tailr --list
# tail a specific log:
tailr my_remote_log
# tail and highlight specified expressions:
tailr my_remote_log expr1
tailr my_remote_log expr1=red
tailr my_remote_log expr1=red,bgWhite
tailr my_remote_log expr1=underline
# you can use "\_" instead of underline:
tailr my_remote_log expr1=_
- added support for tailing multiple servers at once
- remove the 0x0e (ascii 14, shift-out) character before console.log (it messes up the terminal).
- got rid of the "tail" command (you can now use "tailr {log}")
- "tailr completions" is now "tailr --completions"
- "tailr list" is now "tailr --list"
- Highlighting bugfixes
- Improved highlighter: you can now define foreground and background color:
tailr tail mylog expr1=red,bgWhite,underline
tailr tail mylog expr1=red,bgWhite,_
- Added partial sudo support (by Avia Aharon)
- Added highlighting
- Added zsh completions