Forum Discussion

Praba_micro's avatar
12 years ago

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 ...
  • Will_Restore's avatar
    12 years ago
    * 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