mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-21 22:50:42 +08:00
12 lines
203 B
Bash
Executable File
12 lines
203 B
Bash
Executable File
#!/bin/bash
|
|
pid=""
|
|
|
|
if command -v ps &> /dev/null; then
|
|
pid=$(pgrep -f weblogic)
|
|
fi
|
|
|
|
if [ -z "$pid" ]; then
|
|
pid=$(jps 2>/dev/null | grep " Server" | awk '{print $1}')
|
|
fi
|
|
|
|
echo "$pid" | tr -d '\n' |