4 lines
124 B
Bash
4 lines
124 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
echo "Stopping ganache chain on port 7545"
|
||
|
ps -ef | grep ganache | grep -v grep | awk '{print $2}' | xargs kill
|