ablog

不器用で落着きのない技術者のメモ

sqlplus プロセスを kill する

$ ps -ef | grep [s]qlplus | awk '{print $2;}' | while read PROC
do
 kill $PROC
done