I've some short questions:
How it's possible to see the contents of
a system backup on tape device?
I also have to know
the size of the data on the tape?
How can I manage? Is there any way to do?
Thanks in advance!
The 2 field list (size filename) given by litvgbackup is piped to awk as fields $1 $2.
So the size of each file is $1. Then the total size must be th sum of all $1's values.
$0 in awk stands for the whole line in input.
It seems that when we sum all the $0, only the numeric filed $1 is considered. $2 being alphanumeric is dropped! that's why the result stays correct.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.