<div>Hello William,</div>
<div> </div>
<div>You can take one of the scripts that you already found and modify the call to "ps" to display only the jobs you are interested in, for example:</div>
<div> </div>
<div>To call ps and display only the jobs for the group "students" use</div>
<div> </div>
<div>ps -G students</div>
<div> </div>
<div>So one simple script would be:</div>
<div> </div>
<div>kill `ps -G students | awk '{print$1}'`</div>
<div> </div>
<div>Darryl<br><br> </div>