Skip to content

Instantly share code, notes, and snippets.

@kazgorot
Created March 18, 2024 16:54
Show Gist options
  • Save kazgorot/11f00bdcf96f86eb271c75008c646c5e to your computer and use it in GitHub Desktop.
Save kazgorot/11f00bdcf96f86eb271c75008c646c5e to your computer and use it in GitHub Desktop.
backups
bs=$(du -bs . | cut -f1 )
tar -cf - . | tqdm --bytes --total "$bs" --desc 'Processing' | xz -e -T0 | tqdm --bytes --total "$bs" --desc 'Result' --position 1  > out.$(date +%s).xz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment