Commit cc77ff35 authored by Hermann Mayer's avatar Hermann Mayer
Browse files

BashRC: Fixed broken watch-dmesg helper.

parent dee8eeb9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@

function watch-dmesg()
{
    watch -c -n1 "dmesg --color=always | tail -n `$(($(tput lines)-5))`"
    watch -c -n1 "dmesg --color=always | tail -n `echo $(($(tput lines)-5))`"
}

function watch-make-test()