21
I've got a bad backup script including an unwanted file. The .tar.gz backup file is 5gig big and I'd like to get a list of every file in the archive and their size.
Is that possible ? How would you do it ?
21
I've got a bad backup script including an unwanted file. The .tar.gz backup file is 5gig big and I'd like to get a list of every file in the archive and their size.
Is that possible ? How would you do it ?
22
This should list all files and detailed information about them:
tar -ztvf somefile.tar.gz
4
Use
tar --list --verbose --gunzip --file backup.tar.gz > backup_list.txt
to create a file containing a list of all the files in your archive.
You can then grep foo backup_list.txt
to find things, or edit, sed, cut, view, etc.
1
-t
(list) and-v
(verbose, likels -l
use a long listing format) – ThorSummoner – 2018-04-09T21:42:05.977-z isn't strictly needed, for a
.tgz
file just using-tvf
was enough. – That Brazilian Guy – 2019-07-08T14:25:17.483