Re: Scripting



#!/bin/bash
for i in $(command)
do
j=$(echo "$i" | cut -f4)
k=$(echo "$i" | cut -f3)
[ "$j" = "busy" ] && syscheck "$k"
done
#

where "command" gives your table, "cut" assumes tabs are the column
delimiters. - man cut

Thank you very much!


.