From 392356f6b48c12d8ee3fda4f1a75641dbcfa98c2 Mon Sep 17 00:00:00 2001 From: Jon Trulson Date: Fri, 29 Jun 2018 14:37:48 -0600 Subject: [PATCH] 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. --- cde/programs/ttsnoop/ttsnoop.C.src | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) { -- 2.25.1