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
180 B
Bash

#!/bin/sh
PIXZ=../src/pixz
INPUT=$(mktemp)
trap "rm -f $INPUT $INPUT.xz" EXIT
chmod 600 $INPUT
echo foo > $INPUT
$PIXZ $INPUT
[ "$(find $INPUT.xz -perm 0600)" = "$INPUT.xz" ]