solidity/scripts/aleth_with_log.sh

22 lines
201 B
Bash
Raw Normal View History

2019-04-02 09:07:00 +00:00
#!/usr/bin/env bash
ALETH_PATH=$1
ALETH_TMP_OUT=$2
shift
shift
$ALETH_PATH $@ &> >(tail -n 10000 &> "$ALETH_TMP_OUT") &
PID=$!
function cleanup()
{
kill $PID
}
trap cleanup INT TERM
wait $PID