bashoneliners.com

Welcome to bashoneliners.com, a curated collection of practical and well-explained Bash one-liners, snippets, tips and tricks. We aim to make each published one-liner to be of high quality: useful, easy to read, follows best practices, with clear, detailed, accurate explanation. These one-liners should help you automate tasks, troubleshoot problems, whether it be in system administration, file management, networking or programming.

Create a compressed tar file that rsync will transfer efficiently

GZIP='--rsyncable' tar cvzf bobsbackup.tar.gz /home/bob

February 15, 2012Anon6y5E4Use

Re-compress a gzip (.gz) file to a bzip2 (.bz2) file

time gzip -cd file1.tar.gz 2>~/logfile.txt | pv -t -r -b -W -i 5 -B 8M | bzip2 > file1.tar.bz2 2>>~/logfile .txt

February 1, 2012DAVEB