diff options
Diffstat (limited to 'examples/helloworld.stp')
-rwxr-xr-x[-rw-r--r--] | examples/helloworld.stp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/helloworld.stp b/examples/helloworld.stp index c1e50c0f..efe45b79 100644..100755 --- a/examples/helloworld.stp +++ b/examples/helloworld.stp @@ -1,2 +1,2 @@ -#! /usr/bin/stap -probe begin { log("hello world") exit () } +#! /usr/bin/env stap +probe begin { println("hello world") exit () } |