BlinkenArea - GitList
Repositories
Blog
Wiki
uproctrace
Code
Commits
Branches
Tags
Search
Tree:
24e45f6
Branches
Tags
master
uproctrace
upt-trace
upt-trace.bash
call trace file <trace.upt> in upt-trace and upt-tool
Stefan Schuermans
commited
24e45f6
at 2020-07-28 19:32:14
upt-trace.bash
Blame
History
Raw
#! /bin/bash if (( $# < 2 )) then echo "usage: $0 <trace.upt> <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 "$@"