cancel
Showing results for 
Search instead for 
Did you mean: 

command to display the schedule name of the policies

Agent47
Level 4

Hi Team,

need help here.

May i know the command that displayed the schedule name of the policies.

i used bppllist -U but its only display the policy name.

i just want to display also the schedule name.

sample:

policy name schedule name

test Full backups

regards

1 ACCEPTED SOLUTION

Accepted Solutions

Yasuhisa_Ishika
Level 6
Partner Accredited Certified

Both  two below works.

# /usr/openv/netbackup/bin/admincmd/bppllist -allpolicies -l |awk '$1=="CLASS"{policy=$2}$1=="SCHED"{print policy,$2}'

#  /usr/openv/netbackup/bin/admincmd/bppllist -allpolicies -l |while read i j k;do case $i in CLASS) policy=$j;;SCHED) echo "$policy $j";;esac;done

View solution in original post

4 REPLIES 4

RamNagalla
Moderator
Moderator
Partner    VIP    Certified

use bpplinfo <PolicyName> -U

neptor
Level 3

Did you try this?  bpplist -U -allpolicies

Yasuhisa_Ishika
Level 6
Partner Accredited Certified

Both  two below works.

# /usr/openv/netbackup/bin/admincmd/bppllist -allpolicies -l |awk '$1=="CLASS"{policy=$2}$1=="SCHED"{print policy,$2}'

#  /usr/openv/netbackup/bin/admincmd/bppllist -allpolicies -l |while read i j k;do case $i in CLASS) policy=$j;;SCHED) echo "$policy $j";;esac;done