Introduction

Qbak is short for 'Quick Backup'. It is used to make backup for our files in Linux easily and quickly. Currently, it has only CLI interface, but I have plan to add GUI with Python for it.

Documents

Sample usage:
% ./qbak.sh help
Usage: qbak [command] ...
Commands are:
        help    push    pull    top
        clear   list    files
% ./qbak.sh list          
home-wangcong-foo.txt.gz
home-wangcong-dsohowto.pdf.gz
% ./qbak.sh files         
/home/wangcong/foo.txt
/home/wangcong/dsohowto.pdf
% ./qbak.sh pull ~/dsohowto.pdf
/home/wangcong/dsohowto.pdf
% ./qbak.sh list               
home-wangcong-foo.txt.gz
% ./qbak.sh files              
/home/wangcong/foo.txt
% ls ~/dsohowto.pdf -l         
-rw-r--r-- 1 wangcong wangcong 632999 04-09 18:33 /home/wangcong/dsohowto.pdf
% ls ~/foo.txt -l
-rw-rw-r-- 1 wangcong wangcong 40 04-08 22:37 /home/wangcong/foo.txt
% ./qbak.sh pull ~/foo.txt     
/home/wangcong/foo.txt
File list is empty!
% ls ~/foo.txt -l         
-rw-rw-r-- 1 wangcong wangcong 40 04-09 18:36 /home/wangcong/foo.txt
% ./qbak.sh list          
% ./qbak.sh files

Download

Download qbak-0.1.tar.gz
Download qbak-0.2.tar.gz