3 # Receive the path of a chunk of trace, compress it to a temporary directory
4 # and delete the chunk.
7 TRACE_NAME
="$(basename "$TRACE_PATH")"
8 OUT_PATH
="$(mktemp -d)"
12 tar czf
${OUT_PATH}/${TRACE_NAME}.
tar.gz
$TRACE_NAME
13 echo "New trace chunk archive compressed to ${OUT_PATH}/${TRACE_NAME}.tar.gz"
This page took 0.02926 seconds and 4 git commands to generate.