4 lines
102 B
Bash
4 lines
102 B
Bash
#!/bin/bash
|
|
PID=$(ps -ef | grep "dotnet YLErpWeb.dll" | grep -v grep | awk '{print $2}')
|
|
kill $PID
|