diff options
-rwxr-xr-x | compress_files | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compress_files b/compress_files index 7831d07..0d90c42 100755 --- a/compress_files +++ b/compress_files @@ -117,7 +117,7 @@ if (@files) { my @command = $ext eq '.gz' ? qw(gzip -9f) : $ext eq '.bz2' ? qw(bzip2 -9f) : $ext eq '.lzma' ? qw(lzma -9f --text) - : $ext eq '.xz' ? qw(xz -f) + : $ext eq '.xz' ? qw(xz -2ef) : qw() ; xargs(\@files, @command) |