Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
88 views1 page

FOR Loop

This script loops through a list of clients in a file and prints each client name. It then uses the bppllist command to get details for each client such as name, active status, and include flag, filtering the output to only show those fields.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
88 views1 page

FOR Loop

This script loops through a list of clients in a file and prints each client name. It then uses the bppllist command to get details for each client such as name, active status, and include flag, filtering the output to only show those fields.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

for i in ` cat /temp/clients.

txt|awk '{print $1}'`


do
echo $i
bppllist -byclient $i -U |egrep -i "name|active|include"
done

You might also like