warbo-utilities: 714d71bd8f2b260087f8ec6a70249c3090c017e9

     1: #!/usr/bin/env bash
     2: 
     3: # Trace program execution:
     4: #  -f                Trace child threads/processes too
     5: #  -e trace=process  Only log process-related events (creation, exit, ...)
     6: #  -ttt              Give absolute UNIX timestamps for each event
     7: #  -q                Don't log tracer attaches/detaches
     8: strace -f -e trace=process -ttt -q "$@"
     9: 
    10: # NOTE: Trace is logged to stderr, so use 2> to save it

Generated by git2html.