#!/bin/ksh #Created by Easton Birdsong echo Which program would like to kill? read answer VAR_PID=`pgrep $answer` kill -9 $VAR_PID exit
I'm currently trying to create this into a bin file. If anyone could point me in the right direction it would be greatly appreciated!

