Forum Discussion

nbuno's avatar
nbuno
Level 6
13 years ago
Solved

list of Storage unit for all policies in an environemnt

i have to take out a list of all the policies and storage unit assigned to them in a unix environment..what would be the command ?

  • OR, something similar to the following?

    for POLICY in `bppllist`
    do
    echo
    bppllist $POLICY -L|egrep "^Policy Name|^Residence|^Schedule|^  Residence"|grep -v Lifecycle
    done

3 Replies

  • Simply you can use GUI-> and copy them into Excle sheet

    or you need to use bppllist and bpstulist for command line.. 

    hope this helps.

  • You would use the bppllist command:

    bppllist

    http://www.symantec.com/docs/HOWTO43679

    DOCUMENTATION: What do entries in the 'bppllist <policy> -l' command indicate?

    http://www.symantec.com/docs/TECH42917

  • OR, something similar to the following?

    for POLICY in `bppllist`
    do
    echo
    bppllist $POLICY -L|egrep "^Policy Name|^Residence|^Schedule|^  Residence"|grep -v Lifecycle
    done