diff options
Diffstat (limited to 'SOURCES/parallel_xz.sh')
-rwxr-xr-x | SOURCES/parallel_xz.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/SOURCES/parallel_xz.sh b/SOURCES/parallel_xz.sh index bc08a54..0d98ead 100755 --- a/SOURCES/parallel_xz.sh +++ b/SOURCES/parallel_xz.sh @@ -16,6 +16,11 @@ while test "$#" != 0; do shift done +#This seems to cause problems with large numbers +if (( $procgroup > 6 )); then + procgroup=6 +fi + # If told to use only one cpu: test "$procgroup" || exec xargs -r xz test "$procgroup" = 1 && exec xargs -r xz |