Metadata-Version: 1.0
Name: bkp
Version: 0.1.1
Summary: Creates backups of your files and directories.
Home-page: https://github.com/gergelyk/bkp
Author: Grzegorz Krason
Author-email: grzegorz.krason@gmail.com
License: MIT
Description: bkp
        ===
        
        Simple utility that makes backups of your files/directories.
        
        .. image:: https://user-images.githubusercontent.com/11185582/48983793-ab82df00-f0f3-11e8-8727-c665b92bdb31.gif
        
        Installation
        ------------
        
        .. code-block:: bash
        
            sudo pip install bkp
        
        
        Usage
        -----
        
        Creating Backups & Restoring
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
        
        Provided that we have a file or directory: `foo/bar/baz`
        
        .. code-block:: bash
        
            # Create a copy:   
            bkp foo/bar/baz
        
            # Following copy will be created: foo/bar/baz.b01
            # Invoking command again will create foo/bar/baz.b02 etc.
        
            # Restore your file or directory:
            bkp -r foo/bar/baz.01
        
            # This will create/overwrite original file/directory: foo/bar/baz
        
        Note that multiple files can be specified in the command line. Output files are always created in the same directory where corresponding input files are located, no matter what CWD at the time.
        
        Working With Archives
        ^^^^^^^^^^^^^^^^^^^^^
        
        Alternatively ``-a`` flag can be used to create tar archive instead of a simple copy. Also ``-m`` can be used to add comments.
        
        .. code-block:: bash
        
            # Create an archive
            bkp -am "initial version" foo/bar/baz
        
            # Comment and other details can be obtained by invoking:
            bkp -i foo/bar/baz.b03
        
        For more options and explanations invoke ``bkp --help``.
        
        
        Disclaimer
        ----------
        
        Author doesn't take any responsibility for loss or damage caused by this utility. You are using it on your own risk.
        
Keywords: backup
Platform: UNKNOWN
