Create n times larger file from gz file
May 18, 2023
with minimum space & time
curl -L -O https://github.com/criblio/benchmark/raw/main/data/syslog.log.gz
for i in {1..20}; do gzip -cd syslog.log.gz >> output.log;ls -lthr;df -h; echo "--------------";done