Have you tried directly piping it to 7z or bzip2 instead of first creating the file and then compressing it? e.g. ```bash cat private_ip_192 0-9999 ... | 7z a -si Compilation/small.7z cat private_ip_192 0-9999 ... | bzip2 -9 > Compilation/small.bz2 ```