5 lines
126 B
Bash
5 lines
126 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
stap --runtime=dyninst -e 'probe end { printf("*** exiting ***\n"); exit() }' -c "$1/hello" -o "$1/stapout.log"
|
||
|
|