solidity/scripts/aleth_with_log.sh
2019-04-04 16:39:15 +02:00

22 lines
202 B
Bash
Executable File

#!/usr/bin/env bash
ALETH_PATH=$1
ALETH_TMP_OUT=$2
shift
shift
$ALETH_PATH $@ &> >(tail -n 100000 &> "$ALETH_TMP_OUT") &
PID=$!
function cleanup()
{
kill $PID
}
trap cleanup INT TERM
wait $PID