8 lines
148 B
Bash
8 lines
148 B
Bash
#!/bin/bash
|
|
trap "exit" INT
|
|
if [[ ! -f /home/ubuntu/bin/eth ]];
|
|
then
|
|
geth --rpc true --loglevel 1
|
|
else
|
|
eth -x 15 -l 30303 -n off -m off -v 1 -j
|
|
fi |