4 lines
108 B
Bash
Executable File
4 lines
108 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
ps aux | grep '/bin/console app:' | grep -v grep | awk '{print $2}' | xargs -r kill -9
|