vexz wrote:
Does anyone have a script out there that i can use to run the line command: 
client_info
against a file that contain a few hundred clients?





I am not familiar with client_info but it sounds like you just need a pretty 
simple shell script.

note backticks around "cat client_info" below:


for client_host in `cat client_info`
do
  echo ==================
  echo ${client_host} information:
  client_info "${client_host}"
done


--
Dan Pritts
ICPSR Computing & Network Services
University of Michigan

_______________________________________________
Veritas-bu maillist  -  [email protected]
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu

Reply via email to