Tagged Questions
0
votes
1answer
60 views
How to safely enlarge a gzipped file?
I have a gzipped file (around 3Kb), and I want its size to be exactly 4000.
To achieve this goal, is it safe to add trailing padding with zeroes? (By safe I mean that the content of the gzipped file ...
5
votes
5answers
757 views
Unix bash script check empty gz files
I'm trying to write a bash script that will go into a directory loop through the .gz files and delete them if they are empty (ie the uncompressed file contained within in empty.
I've got a couple of ...