1834571 Members
3435 Online
110069 Solutions
New Discussion

Re: frecover

 
Shawn McConnell
Advisor

frecover

Is there a way using the frecover command that I can get a time stamp on when the restore starts and finishes.

Any help would be great

Shawn
2 REPLIES 2
Alan Meyer_4
Respected Contributor

Re: frecover

Include it in a wrapper script

#! /bin/ksh
date
frecover
date


You can also redirect the output to a logfile

-a
" I may not be certified, but I am certifiable... "
generic_1
Respected Contributor

Re: frecover

#make a script
date >> /tmp/file.out
frecover #with options you want
date >> /tmp/file.out