From: Jon Trulson Date: Fri, 29 Jun 2018 20:37:48 +0000 (-0600) Subject: ttsnoop: use tail arg -f rather than +0f X-Git-Tag: 2.3.0a~276 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=392356f6b48c12d8ee3fda4f1a75641dbcfa98c2;p=oweals%2Fcde.git ttsnoop: use tail arg -f rather than +0f I cannot even find out what "+0f" is supposed to do (google fail), but this seems a reasonable alternative that should work everywhere. --- diff --git a/cde/programs/ttsnoop/ttsnoop.C.src b/cde/programs/ttsnoop/ttsnoop.C.src index 4e51f528..5deb6fd8 100644 --- a/cde/programs/ttsnoop/ttsnoop.C.src +++ b/cde/programs/ttsnoop/ttsnoop.C.src @@ -517,7 +517,7 @@ main(int argc, char **argv) } } apiTracerArgv[ 0 ] = "tail"; - apiTracerArgv[ 1 ] = "+0f"; + apiTracerArgv[ 1 ] = "-f"; apiTracerArgv[ 2 ] = traceFile; if (snoopFile == 0) { // @@ -530,7 +530,7 @@ main(int argc, char **argv) } } snooperArgv[ 0 ] = "tail"; - snooperArgv[ 1 ] = "+0f"; + snooperArgv[ 1 ] = "-f"; snooperArgv[ 2 ] = snoopFile; if (optind < argc) {