From: Michael Prokop Date: Tue, 4 Oct 2022 06:33:31 +0000 (+0200) Subject: Merge remote-tracking branch 'origin/github/pr/149' X-Git-Tag: v0.19.4~1 X-Git-Url: https://git.grml.org/?a=commitdiff_plain;h=0dd17b079e499533a8f8cb650195a9fcb779802f;hp=089526666300736e81d1f7aa70ad15056c9280ee;p=grml-etc-core.git Merge remote-tracking branch 'origin/github/pr/149' --- diff --git a/doc/grmlzshrc.t2t b/doc/grmlzshrc.t2t index 9016cea..485587a 100644 --- a/doc/grmlzshrc.t2t +++ b/doc/grmlzshrc.t2t @@ -1106,7 +1106,7 @@ http://www.cl.cam.ac.uk/~mgk25/unicode.html#term). Sets mode from ISO 2022 to UTF-8 (See: http://www.cl.cam.ac.uk/~mgk25/unicode.html#term). -: **tlog** (//tail -f /var/log/syslog//) +: **tlog** (//tail --follow=name /var/log/syslog//) Prints syslog continuously (See tail(1)). : **up** (//aptitude update ; aptitude safe-upgrade//) diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index b369aca..bb8ecec 100644 --- a/etc/zsh/zshrc +++ b/etc/zsh/zshrc @@ -2848,7 +2848,7 @@ if [ -e /var/log/syslog ] ; then #a1# Take a look at the syslog: \kbd{\$PAGER /var/log/syslog || journalctl} salias llog="$PAGER /var/log/syslog" # take a look at the syslog #a1# Take a look at the syslog: \kbd{tail -f /var/log/syslog || journalctl} - salias tlog="tail -f /var/log/syslog" # follow the syslog + salias tlog="tail --follow=name /var/log/syslog" # follow the syslog elif check_com -c journalctl ; then salias llog="journalctl" salias tlog="journalctl -f"