this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: disable progress bar in test.sh

+3 -3
+3 -3
bin/test.sh
··· 68 68 random_file 1000000 file 69 69 echo "Compressing with gzip and cmprss" 70 70 gzip -$1 -c file >gzip_file.gz 71 - cmprss gzip --level $1 file cmprss_file.gz 71 + cmprss gzip --level $1 file cmprss_file.gz --progress=off 72 72 # Compare the two archives 73 73 # The archives may have slight variations (versioning or whatever) so we 74 74 # only compare the sizes to make sure they are similar ··· 77 77 echo "Decompressing" 78 78 gzip -c -d gzip_file.gz >gzip_gzip 79 79 gzip -c -d cmprss_file.gz >cmprss_gzip 80 - cmprss gzip --extract cmprss_file.gz cmprss_cmprss 81 - cmprss gzip --extract gzip_file.gz gzip_cmprss 80 + cmprss gzip --extract cmprss_file.gz cmprss_cmprss --progress=off 81 + cmprss gzip --extract gzip_file.gz gzip_cmprss --progress=off 82 82 echo "Comparing the decompressed files" 83 83 compare file gzip_gzip 84 84 compare file gzip_cmprss