pid=$(ps -elf|grep vim|grep 'screenrc' | awk -F" " '{print $4}')
Mas, em vez disso, você pode usar pgrep :
pid=$(pgrep -f "python .*$1")
ou
pids=$(pgrep -d' ' -f "python .*$1")
kill -9 $pids
Se você está se sentindo confiante (imprudente!):
\pkill -9 -f "python .*$1"