You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pixz/test/compress-file-permissions.sh

14 lines
171 B
Bash

#!/bin/bash
PIXZ=../src/pixz
INPUT=$(mktemp)
trap "rm -f $INPUT $INPUT.xz" EXIT
chmod 600 $INPUT
echo foo > $INPUT
$PIXZ $INPUT
[[ $(stat -c "%a" $INPUT.xz) = 600 ]]