Skip to content
Snippets Groups Projects
Commit 613901b6 authored by Yann Collet's avatar Yann Collet
Browse files

modifies command echoing for macos / linux compatibility

parent 468e1453
Branches lmax
No related tags found
No related merge requests found
......@@ -6,7 +6,10 @@ set -v
datagen > file
# Retrieve the program's version information
# Note: command echoing differs between macos and linux, so it's disabled below
set +v
version_info=$(zstd -V)
set -v
# Compress with various levels and ensure that their sizes are ordered
zstd --fast=10 file -o file-f10.zst -q
......
......@@ -2,7 +2,8 @@
datagen > file
# Retrieve the program's version information
version_info=$(zstd -V)
# Note: command echoing differs between macos and linux, so it's disabled below
set +v
# Compress with various levels and ensure that their sizes are ordered
zstd --fast=10 file -o file-f10.zst -q
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment