Here is a small script to get the list of policies configured against a list of clients using netbackup commandline. Command used is bpplclients to get the clients. 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 -noheader | awk 'BEGIN {printf "'$i'"}{print "," $NF}' done > /tmp/output.csv Below is the Output file [ comma (,) separated … [Read more...] about Netbackup Script to get client Vs policy list
Netbackup
Netbackup Script to get Policy Vs client list
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 -noheader | awk 'BEGIN {printf "'$i'"}{print "," $NF}' done > /tmp/output.csv Below is the Output file [ comma (,) separated … [Read more...] about Netbackup Script to get Policy Vs client list