Here is a small script to get the list of clients configured against a list of policies in netbackup. Command used here is bpplclients to get the client list. Put the list of policy in a file /tmp/policy_list. # cat /tmp/policy_list policy01 policy02 policy03 The script : for i in `cat /tmp/policy_list` do bpplclients $i […]