mirror of
https://github.com/vasi/pixz
synced 2024-10-30 15:21:41 +00:00
7 lines
143 B
Bash
Executable File
7 lines
143 B
Bash
Executable File
#!/bin/bash
|
|
|
|
PIXZ=../src/pixz
|
|
|
|
[[ "foo" = $(echo foo | xz | xz -dc) ]] || exit 1
|
|
[[ "bar" = $(echo bar | $PIXZ | $PIXZ -dc) ]] || exit 1
|