Restore original `tail` functionality in ttsnoop, with POSIX args
This commit is contained in:
parent
de69b56458
commit
041788debc
|
|
@ -517,8 +517,10 @@ main(int argc, char **argv)
|
|||
}
|
||||
}
|
||||
apiTracerArgv[ 0 ] = "tail";
|
||||
apiTracerArgv[ 1 ] = "-f";
|
||||
apiTracerArgv[ 2 ] = traceFile;
|
||||
apiTracerArgv[ 1 ] = "-n";
|
||||
apiTracerArgv[ 2 ] = "+0";
|
||||
apiTracerArgv[ 3 ] = "-f";
|
||||
apiTracerArgv[ 4 ] = traceFile;
|
||||
if (snoopFile == 0) {
|
||||
//
|
||||
// Set up fifo for snoop output
|
||||
|
|
@ -530,8 +532,10 @@ main(int argc, char **argv)
|
|||
}
|
||||
}
|
||||
snooperArgv[ 0 ] = "tail";
|
||||
snooperArgv[ 1 ] = "-f";
|
||||
snooperArgv[ 2 ] = snoopFile;
|
||||
snooperArgv[ 1 ] = "-n";
|
||||
snooperArgv[ 2 ] = "+0";
|
||||
snooperArgv[ 3 ] = "-f";
|
||||
snooperArgv[ 4 ] = snoopFile;
|
||||
|
||||
if (optind < argc) {
|
||||
if (committed2Snooping) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue