Praba_micro
12 years agoLevel 3
Clients and backup selection
Hi All,
I would like to know if anyone has a script to get the backup selection alone for a specific set of clients in report format.
In other words a script to find backup selection of each client in Netbackup will be helpful.
Regards,
Prabaharan
- * pseudocode, modify to fit your OS * # get all clients bpclient -All > /tmp/clientlist # get backup selection for each client for CLIENT in /tmp/clientlist do echo $CLIENT bppllist -byclient $CLIENT -U | grep "Include" done