Create n times larger file from gz file

--

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

--

--

No responses yet