diff options
author | Martin Matuska <mm@FreeBSD.org> | 2012-07-18 09:16:47 +0000 |
---|---|---|
committer | Martin Matuska <mm@FreeBSD.org> | 2012-07-18 09:16:47 +0000 |
commit | 77225241cd47b9d06c05bd568fc057328c0c65e5 (patch) | |
tree | 7b21d952f88eed0f80743c1b974b35495a428e72 /cmd/dtrace/test/tst/common/profile-n/tst.umod.ksh | |
parent | 5bb19a17c049cd92ccbd811a6bd0daf69ac899c1 (diff) | |
parent | 93a00b0821525e25814cd720fafd04d600811c28 (diff) |
Notes
Diffstat (limited to 'cmd/dtrace/test/tst/common/profile-n/tst.umod.ksh')
-rw-r--r-- | cmd/dtrace/test/tst/common/profile-n/tst.umod.ksh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/dtrace/test/tst/common/profile-n/tst.umod.ksh b/cmd/dtrace/test/tst/common/profile-n/tst.umod.ksh index fe5649da76cda..6ca823f5ddd33 100644 --- a/cmd/dtrace/test/tst/common/profile-n/tst.umod.ksh +++ b/cmd/dtrace/test/tst/common/profile-n/tst.umod.ksh @@ -23,6 +23,7 @@ # Copyright 2007 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # +# ident "%Z%%M% %I% %E% SMI" script() { @@ -61,7 +62,7 @@ child=$! # # The only thing we can be sure of here is that ksh is doing some work. # -script | tee /dev/fd/2 | egrep '(ksh|libshell)' > /dev/null +script | tee /dev/fd/2 | grep -w ksh > /dev/null status=$? kill $child |