7 lines
229 B
Plaintext
7 lines
229 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
serv="$1"
|
||
|
shift
|
||
|
|
||
|
ssh "$serv" 'sudo tail --follow=name --retry --quiet $(sudo find $(echo /var/log/$([ -d /var/log/httpd/ ] && echo httpd || echo apache2)) -type f -name *access.log)' | logstalgia --sync "$@"
|