mirror of
https://github.com/tappollo/quorum-examples.git
synced 2026-01-12 17:03:08 +08:00
10 lines
189 B
Bash
Executable File
10 lines
189 B
Bash
Executable File
#!/bin/bash
|
|
killall geth bootnode constellation-node
|
|
|
|
if [ "`jps | grep tessera`" != "" ]
|
|
then
|
|
jps | grep tessera | cut -d " " -f1 | xargs kill
|
|
else
|
|
echo "tessera: no process found"
|
|
fi
|