BlinkenArea - GitList
Repositories
Blog
Wiki
uproctrace
Code
Commits
Branches
Tags
Search
Tree:
1f85c99
Branches
Tags
master
uproctrace
upt-trace
upt-trace.bash
implement upt-trace wrapper
Stefan Schuermans
commited
1f85c99
at 2020-05-22 13:32:43
upt-trace.bash
Blame
History
Raw
#! /bin/bash if (( $# < 2 )) then echo "usage: $0 <upt-trace-file.proto> <command> [<arg> [...]]" >&2 exit 2 fi TRACE_FILE="$1" shift UPT_HOME="$(readlink -f "$(dirname "$(dirname "$0")")")" touch "$TRACE_FILE" export UPTPL_OUTPUT="$(readlink -f "$TRACE_FILE")" export LD_PRELOAD="$UPT_HOME/libuptpl/libuptpl.so" exec "$@"