9 lines
131 B
Bash
Executable file
9 lines
131 B
Bash
Executable file
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
srch="$1"
|
|
|
|
ps -ef | awk -v this="$0" -v search="$srch" '{
|
|
if($NF~search && $0!~this){print $2}
|
|
}'
|
|
|