Popularity
0.8
Stable
Activity
0.0
Stable
1
2
2

Programming language: Go
License: Apache License 2.0
Tags: Command Line     Standard CLI     Tools     Tail     Ssh    

multi-tailf alternatives and similar packages

Based on the "Standard CLI" category.
Alternatively, view multi-tailf alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of multi-tailf or a related project?

Add another 'Standard CLI' Package

README

multi-tailf

watch multiple logs on local or remote servers.

Dependencies

Usage

Usage: mtailf [OPTIONS] [ /path/file | user:pass@host:file ] ...
   or: mtailf [ --version | --help ]

mtailf is equivalent of tail -f on multiple local or remote files at once

Options:
  --ssh-pass=value          default password for ssh
  --ssh-key=~/.ssh/id_rsa   default key file for ssh
  --ssh-file=value          default file for ssh tail
  --version                 show version information
  --help                    show this help

Examples:
* Local files
    mtailf /var/log/messages-1 /var/log/messages-2
* Multiple files on servers
    mtailf [email protected] [email protected] --ssh-pass=password --ssh-file=/var/log/messages
* Use SSH private key
    mtailf [email protected]:/var/log/messages --ssh-key=/tmp/ssh.key
* Use SSH passwords
    mtailf root:[email protected]:/var/log/messages root:[email protected]:/var/log/messages
* Use SSH port
    mtailf [email protected]:8022:/var/log/messages