Skip to content

Instantly share code, notes, and snippets.

@dijit
Created July 3, 2014 02:31
Show Gist options
  • Save dijit/01f13336c7e1462844b2 to your computer and use it in GitHub Desktop.
Save dijit/01f13336c7e1462844b2 to your computer and use it in GitHub Desktop.
#Parallel Compression based on your number of cores.
function xzv() {
THREADS=`grep processor /proc/cpuinfo | wc -l`;
for file in $*; do
pv -s `stat -c%s $file` < $file | pxz -q -T $THREADS > $file.xz ;
done;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment