#!/bin/bash


pids=$(ps auxww | grep "ant " | grep install | awk '{ print $2 }')

pid_list=$(echo $pids | sed 's/ /,/g')

ps --pid $pid_list -u



