cancel
Showing results for 
Search instead for 
Did you mean: 

bplist output list

T_N
Level 6

Hi All;

I have question about bplist output list. What option with bplist to get bplist outlist like this:

rw-rw---- oradb     dba          10747904 Nov 07 20:07 /obackup/krnarprd/dumpdb/KRNARPRD_ctl_2014-11-07_c-1574194618-20141107-05

-rw-rw---- oradb     dba          10747904 Nov 07 20:07 /qdpn1o7i_1_1

-rw-rw---- oradb     dba            262144 Nov 07 20:06 /obackup/krnarprd/dumpdb/KRNARPRD_2014-11-07_200032_FULL_ARCH_qcpn1o72_1_1

-rw-rw---- oradb     dba         150208512 Nov 07 20:05 /obackup/krnarprd/dumpdb/KRNARPRD_2014-11-07_200032_FULL_DATA_qbpn1o51_1_1

 

I ran  bplist -C krnarprd.hdsupply.net -t 4 -s 11/12/2014 20:00:00 -e 11/12/2014 20:10:00 -R /  but it doesn't show the " rw-rw---- oradb dba 10747904 Nov 07 20:07 "  anyone can let me know what option with bplist command ? Thank you

1 ACCEPTED SOLUTION

Accepted Solutions

RamNagalla
Moderator
Moderator
Partner    VIP    Certified

try the below command..

bplist -C krnarprd.hdsupply.net -l -b -t 4 -s 11/12/2014 20:00:00 -e 11/12/2014 20:10:00 -R / 

you need to use -l to show the file attributes.. permissions and file group and owner name

and -b to show the backup date..

View solution in original post

5 REPLIES 5

RamNagalla
Moderator
Moderator
Partner    VIP    Certified

try the below command..

bplist -C krnarprd.hdsupply.net -l -b -t 4 -s 11/12/2014 20:00:00 -e 11/12/2014 20:10:00 -R / 

you need to use -l to show the file attributes.. permissions and file group and owner name

and -b to show the backup date..

Marianne
Level 6
Partner    VIP    Accredited Certified

To add to Ram's excellent post - if you ever wonder about command options, you can look in Command Reference Guide: http://www.symantec.com/docs/DOC5182

mph999
Level 6
Employee Accredited

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

Nicolai
Moderator
Moderator
Partner    VIP   

You are spot on the command T_N but you are missing the -l option to get the file details.

From the bplist tech note:

On UNIX and Linux systems, -l lists the following file details in a long format: Mode, owner, group, size in bytes, and time of last modification for each file (see the EXAMPLES section). The list shows the mode of each file as 10 characters that represent the standard UNIX file permissions.

 

Best Regards

Nicolai

T_N
Level 6

thank you.